Search:

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

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    1,039

    Issue with bindTag.

    1.This one works


    <form method="POST">
    <table>
    <c&#58;forEach var="customerList" varStatus="status" items="$&#123;customerCollection.customerList&#125;">
    <tr>
    ...
  2. Replies
    1
    Views
    929

    How to do the binding and validation?

    I have situation where I am suppose to create a data entry screen for the products.

    Basically this screen will have multiple rows. Each row is associated with one "Product" object. The command...
  3. I am using Spring ver 1.1.2 ...

    I am using Spring ver 1.1.2



    getSession&#40;&#41;.lock&#40;user, net.sf.hibernate.LockMode.UPGRADE&#41;;
    getHibernateTemplate&#40;&#41;.initialize&#40;person.getAddresses&#40;&#41;&#41;;


    Just wondering were this code should go....
  4. What is that I am missing? (LazyInitializationException)

    Hi,

    I know this is to do with the Hibernate Session. But I am not sure how to solve this.


    class Person &#123;
    String firstName;
    String lastName;
    Set addresses;
    &#125;
  5. Both the queries have the same effect. But...

    Both the queries have the same effect.

    But this is what I found from Hibernate forums.

    Using List implementation for collections is not a recommended option. So I reimplemented it using Set....
  6. One-to-Many Data Retrieval issue when using Hibernate

    Hi,

    I have an issue while retrieving the data from the database using Hibernate.
    This is a very simple structure. A Person object having many Address objects.



    Person &#123;
    Long personId;...
  7. I have the same problem. But in my case the...

    I have the same problem. But in my case the collection is a java.util.List.

    When I analyzed the collection. I found that the collection.size() returned me 2 instead of 1. When I iterated through...
  8. Thread: Bread Crumbs

    by arun
    Replies
    1
    Views
    1,113

    Bread Crumbs

    Hi,

    Just like to know whether Spring provides any facility for "Bread Crumbs" construction.

    Thanks,
    Arun
  9. Right Approach for Form Validation involving Collections?

    Hi,
    I am very new to Springframework. I like to know what is the right approach for Form Validation that involves Collection. Here is an example.
    The domain object is as below:


    Person &#123;
    ...
Results 1 to 9 of 9