Search:

Type: Posts; User: etschreiber; Keyword(s):

Search: Search took 0.02 seconds.

  1. funny how it works

    I was stuck on this for a few hours yesterday. I posted the question this morning and I figured it out as soon as I finished posting:

    I had both the spring-1.1.1 and spring-1.1.4 jars in my lib...
  2. Binding Map with values that contains Lists.

    I have a HashMap with String keys and List values:



    List l1 = new ArrayList();
    List l2 = new ArrayList();
    List l3 = new ArrayList();

    l1.add(""); l1.add("");
    l2.add(""); l2.add("");
  3. Replies
    14
    Views
    3,799

    The way to get the command object

    The best way to get the command object is to overide



    org.springframework.web.servlet.mvc.BaseCommandController
    .createBinder(HttpServletRequest request,Object command)



    instead of the...
  4. initBinder registerCustomEditor for a Collection

    The following is from the javadoc for org.springframework.validation.DataBinder



    Lets say I have a set of Person objects inside of a Company object:




    public class Person {
  5. issue

    I tried this as the following code shows:



    HibernateTemplate hibernateTemplate = getHibernateTemplate();

    log.debug("Setting Interceptor");
    ...
  6. amazing!

    Thanks for the quick response. I am amazed by how fast support on this board is.
  7. net.sf.hibernate.Interceptor and HibernateDaoSupport

    I am using HibernateDaoSupport. I have written a net.sf.hibernate.Interceptor for AuditLogging. If I were using Hibernate, I would use the following code to get the session using the hibernate...
  8. need...

    need is a strong word. Of course not, but it would be nice. Actually, irbouho gave an excellent suggestion. Those tags seem to work nicely and make the code that much cleaner. JSP's are...
  9. Tag Library for Spring MVC like struts-html ?

    Is there a tag library that you can use with spring like the struts-html tag library? (http://struts.apache.org/userGuide/struts-html.html)

    There is a jakarta-commons input tag library but they...
Results 1 to 9 of 9