This was a dumb mistake, my datasource was not an JTA datasource. I updated that and everything seems to be working property.
Type: Posts; User: brall; Keyword(s):
This was a dumb mistake, my datasource was not an JTA datasource. I updated that and everything seems to be working property.
I was able to get past this exception with the following configuration:
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
...
I made this change and still got the same result. I also added some debugging to an extended EM Factory to be sure that the jta datasource was not null. Here is the full stack trace is really log but...
This didn't seem to solve the problem.
I am using Spring 2.0.6 and Hibernate 3.2.x on JBoss 4.0.5. I am working on a JPA application; the application works fine when I use the JpaTransactionManager, however I am having problems using the...
Hi all,
I am designing a system that uses multiple data-tier modules. It is using spring JPA with annotation based transaction support. What I am struggling with is should these beans all be...
I have a question regarding multiple persistence contexts in a spring JPA application. I have a fairly large application with several different jpa components that each have a different...