As Spring 2.0.4 has fixed the bug SPR-2598 to deal with Single PersistenceUnit in Multiple persistence.xml files.
http://opensource.atlassian.com/projects/spring/browse/SPR-2598
The suggested...
Type: Posts; User: gaplo; Keyword(s):
As Spring 2.0.4 has fixed the bug SPR-2598 to deal with Single PersistenceUnit in Multiple persistence.xml files.
http://opensource.atlassian.com/projects/spring/browse/SPR-2598
The suggested...
Hi,
Does anyone know how to configure Spring MDP listen to composite destinations created by ActiveMQ !?
<!-- message listener container -->
<bean id="jmsListenerContainer"...
Thanks, as you said, a new transaction is required. I tried to add "no-rollback" attribute for <tx:advice> to ignore DataIntegrityViolationException and failed.
I would like to implement something we called "soft delete". For example, a record in DB will be deleted if no child record found, else marked it as "CLOSED".
code from service class
public...
Hi, I am trying to integrate valang validation, however, I can't make use of function in error_parameters.
{ name : ? is not blank : 'name is required' : 'errors.required' :...
Just created an issue on JIRA
http://opensource.atlassian.com/projects/spring/browse/SPR-2598
Thanks.
Thanks anyway, now I simply "modify" the "DefaultPersistenceUnitManager" to fit my needs, (i.e. simply adding the ManagedClasses to existing PU).
Hi, I just upgraded to Spring 2.0RC4 and found it introduced a new mechanism for scanning persistence.xml. While in RC3, I have to override the LocalContainerEntityManagerFactoryBean to allow...
Thanks all of you :P
Thanks for your reply.
Is that mean, I have to write a method for each combination ? for example I added a field nationality to the Person class that I need the followings ?
...
Hi all, I am new to Spring + Hibernate and thinking about the architecture problem when using the Hibernate Criteria.
In my existing small project, I am using 3-layers design (web tier, services...
Hi all, I have created a mapping between two classes School and Course, while School contains a set of Courses.
The code is like this
public class School {
private String name;
...