Hello,
I have the erro in Linux, when i want connecter to my site, i get the message:
***********************************************************
11:51:10,380 WARN [loggerI18N] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.multipleWarning] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.multipleWarning] Multiple last resources have been added to the current transaction. This is transactionally unsafe and should not be relied upon. Current resource is org.jboss.resource.connectionmanager.TxConnectionManager$LocalXAResource@1767f1
*************************************************************
and i'am stop sur the page login.
This code+jboss not problme run by win2003,
and this tims it's run in linux, i get this erro.
Thanks for help.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105402#4105402
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4105402
Hello everybody,
i want to create an annotation @JndiInject("java:/....") above an attribute for jndi lookup. I use java bean (no EJB3), so i created annotation like this:
| @Target(FIELD)
| @Documented
| @Retention(RUNTIME)
| @Interceptors(JndiInterceptor.class)
| public @interface Jndi
| {
| String value();
| }
|
and i think interceptor class should be like this:
| public class JndiInterceptor {
|
| @AroundInvoke
| public Object jndiLookup(InvocationContext invocation )throws Exception{
| ....................
| return invocation.proceed();
| }
| }
|
but it doesnt work,:...( can anyone help?
many thanks in advance
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105396#4105396
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4105396