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...
Type: Posts; User: dedoel; Keyword(s):
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...
Hi, I got a simple relationship like
@ManyToOne(optional = false, fetch = LAZY)
@JoinColumn(name = "id_poll")
private Poll poll;
and
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));
}
Hi I got two simple classes :
1. Person
@Entity
@SequenceGenerator(name = "person_seq", sequenceName = "person_seq", allocationSize = 1)
public class Person {
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>...
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 :
...
Thanks for your reply and sorry for another similar topic. Won't happen again :)
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...