Hi yakamax,
You can try to move the config:
<tx:annotation-driven transaction-manager="txManager"/>
From orm.xml to applicationContext.xml
And if you have a *-servlet.xml, add too:
Type: Posts; User: claudio_br; Keyword(s):
Hi yakamax,
You can try to move the config:
<tx:annotation-driven transaction-manager="txManager"/>
From orm.xml to applicationContext.xml
And if you have a *-servlet.xml, add too:
Someone can confirm if it is a bug in Spring?
Somebody help me?
Thanks
Hi dkarr
I am not using a Application Server.
I am using a WebContainer (Tomcat 6.0.18).
I thought in using ActiveMQ, but a simple BlockingQueue can resolve my problem.
Is there any easy way to...
Hi,
I have a web application using OpenEntityManagerInViewFilter working together with @Transaction in my DAO.
My application owns a BlockingQueue to asynchronous processing. How can my...
Hi Alarmnummer,
I change my B class to:
public class B {
private BlockingQueue<Integer> blockingQueue;
public BlockingQueue<Integer> getBlockingQueue() {
Hi,
I am trying inject a BlockingQueue by applicationContext.xml.
In my applicationContext.xml I have:
<bean id="myBlockingQueue" class="java.util.concurrent.LinkedBlockingQueue" />
In my...
Hi,
I solved the problem.
I added in my application-context.xml the follow line:
<bean id="autoproxy" class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
...
Hi,
I am trying use the spring-modules-cache (0.9 version) with jcs, but it does not work.
I wrote this class:
package com;
import java.util.ArrayList;
import java.util.List;
..........