Spring 2.5.5. I'll get back with the results of testing with mocks.
Type: Posts; User: kconway; Keyword(s):
Spring 2.5.5. I'll get back with the results of testing with mocks.
Hi Ramnivus - according to an earlier reply by Marten Deinum, "You can only intercept externally called methods. So basically you can only intercept the methods exposed on the Servlet interface,...
Yes. It is just delegating to the Servlet Class that is instantiated as a bean. My understanding from reading the Spring AOP documentation is that the Spring AOP framework can only execute...
Hi Martin - Thanks for your response. With my new found understanding of the problem, I modified the pointcut expression to be the following
<?xml version="1.0" encoding="UTF-8"?>
<beans >
...
Hello - I'm hoping someone can spot something wrong with my configuration. I'm trying to execute an aspect on a class that is a Servlet. I've created the following implementation and have made the...
Thanks for the response. Turns out that what I really needed to do was rtfm :-D I think I have a solution for my problem. Cheers!
Hello - I'm trying to use a spring aop aspect with a servlet.
I have the following spring configuration:
<aop:aspectj-autoproxy proxy-target-class="true"/>
<aop:config>
<aop:pointcut...