Search:

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

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    720

    Can anyone help me with this? I still haven't got...

    Can anyone help me with this? I still haven't got any solution. I found this link : http://jsweetland.livejournal.com/2475.html and it is written that I have to make a collection mappings...
  2. Replies
    1
    Views
    720

    Problem with deleting ( JPA, Hibernate)

    Hi, I got a simple relationship like



    @ManyToOne(optional = false, fetch = LAZY)
    @JoinColumn(name = "id_poll")
    private Poll poll;


    and
  3. maybe I should add that List in Person...

    maybe I should add that List<Phone> in Person object is created by :



    public Person() {
    phones = LazyList.decorate(new ArrayList<Phone>(),
    new InstantiateFactory(Phone.class));
    }
  4. No "id" is persisted in a ManyToOne relationship

    Hi I got two simple classes :

    1. Person



    @Entity
    @SequenceGenerator(name = "person_seq", sequenceName = "person_seq", allocationSize = 1)
    public class Person {
  5. Replies
    1
    Views
    1,385

    Ok, I had to change the name attribute in my...

    Ok, I had to change the name attribute in my inputs to ${status.expression} and it works correctly now



    <table id="tablePhones">
    <tr>
    <td>Number</td>
    <td>...
  6. Replies
    1
    Views
    1,385

    #SpringBind on dynamically created fields

    I'm working on a small Spring MVC application and I'm trying to create a dynamic form using Velocity, Spring and jQuery.

    I followed that article, of course with some changes :
    ...
  7. Replies
    2
    Views
    787

    Thanks for your reply and sorry for another...

    Thanks for your reply and sorry for another similar topic. Won't happen again :)
  8. Replies
    2
    Views
    787

    @Transactional proxy problem

    Hi, I am trying to run my first Spring web application, but I have a problem with implementing DAO's. I am not sure what the problem is, but when I put the @Transactional adnotation I got an...
Results 1 to 8 of 8