for me the problem turned to be some Maven transitive dependencies injected into the final .war file. I just removed them ( JBoss-client.jar, jta.jar ) and it worked.
good luck,
kama
Type: Posts; User: kamadelva; Keyword(s):
for me the problem turned to be some Maven transitive dependencies injected into the final .war file. I just removed them ( JBoss-client.jar, jta.jar ) and it worked.
good luck,
kama
Hi,
I have a problem trying to deploy an application using : Spring 2.5.2 on JBoss 4.0.5
In my classes I use at 'Transactional' annotation so I tried the following :
1.
...
Hi,
We are trying to do exactly the same in our project. The solution we came up with was to create a new controller . You have to make changes in 3 places :
1.Create a new controller : ...
Hi
The offending test class is :
@ContextConfiguration
public class MyRepositoryImplTests
extends AbstractTransactionalJUnit4SpringContextTests{
@Test
public void testSimpleTest(){
...
I'm trying to run an junit test with JTA outside of a jee container.
I have two datasources in my XXX-context.xml
<bean id="datasource1" class="com.atomikos.jdbc.SimpleDataSourceBean"...