aaaaaaa, sorry,
maybe it's a problem with <jms:listener>
when I use the traditional bean defintion, simple and default message listener container both work,
:confused:
Type: Posts; User: fujohnwang; Keyword(s):
aaaaaaa, sorry,
maybe it's a problem with <jms:listener>
when I use the traditional bean defintion, simple and default message listener container both work,
:confused:
hi, guys
I find a problem with spring jms remoting, maybe it's not problem, here is the details:
when I use DefaultMessageListenerContainer with JmsInvokerServiceExporter, the Message can't be...
Hi, Rod
Sorry to bother u, but if you can give me some information about my question below, I will be cheerful about that. :)
we know the spring framework offered us more benefits on...
thank u both.:D
mdeinum , I should say thank u very much,hehe
but i don't know how to register a JIRA issue, :confused:
anyway , I know there is something missing here, thanks a lot
if you really want to , I tell u something you can try, it's simple:
<aop:config>
<aop:advisor id="securityAdvisor"
pointcut-ref="myCutSecurity"
advice-ref="securityAdvice"...
OK, let's check it out.
when I configure the aop stuffs like this, it works:
<aop:config proxy-target-class="false">
<aop:advisor id="performanceAdvisor" ...
as to the <aop:config> element in schema-based aop configuration,
it has a type attribute, which has two enumerated value: aspectj and regex, I guess you can give a regular expression to the...
In fact , I am testing the difference between "this" and "target" designators,
if "proxy instanceof InterceptableTwo" returns false, then why the pointcut defined with "this" designator matches and...
ProxyFactory weaver = new ProxyFactory();
weaver.setProxyTargetClass(false);
weaver.setTarget(new InterceptableTwo());
AspectJExpressionPointcut p = new...
hi, spring aop gurus,
since I am preparing some materials on spring aop, when I come to the @target designator, I find some problems, I hope you gurus here can help me out.
1-I found The...