Adding the <dispatcher> elements solved it.
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
...
Type: Posts; User: jeanluc; Keyword(s):
Adding the <dispatcher> elements solved it.
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
...
Hello,
I'm trying to make form login work with Tapestry 5 and SS 2.0.4
When the login form submission is made, the POST request ends up in Login.onSubmit() (where Login is the Java class...
Our JMS integration with Spring follows the common path of having a DefaultMessageListenerContainer -> MessageListenerAdapter -> POJO.
The POJO is used for multiple destinations. I would like to...
Well, it already works with DAOImpl if I want to catch all subclasses with one aspect. What I tried, through, is to have different aspects for different subclasses, hence the attempt to advice only...
JDK proxy (Sun's JDK5 to be more precise).
I forgot to version: Spring 2.0.1
I've run into a case when an after-throwing advice is not executed in certain situations (and no, it does not appear a case of self-invocation). The case is pretty simple.
I have an interface, ...