This content has been marked as final.
Show 1 reply
-
1. Re: Embedded JBoss - clustered EJB3
yura.taras Apr 14, 2010 4:10 PM (in response to yura.taras)Looks like it can be fixed with JBoss AOP. I've changed ejb3-interceptors-aop.xml:
{code:xml}
<!-- Clustered cache configuration --><annotation expr="!class(@org.jboss.ejb3.annotation.Cache) AND class(@org.jboss.ejb3.annotation.Clustered)">@org.jboss.ejb3.annotation.Cache ("NoPassivationCache") <!-- I've changed default value to this one--></annotation>{code}
That fixed my problem.