Thanks, that does indeed work. However, if I do that, then I cannot get to the annotation which is present on the class from my interceptor (which implements...
Type: Posts; User: zach.marshall; Keyword(s):
Thanks, that does indeed work. However, if I do that, then I cannot get to the annotation which is present on the class from my interceptor (which implements...
I have a service interface that has a method that looks like the following:
package com.foo.svcs;
public interface FooService {
@PreAuthorize("ROLE_USER")
...
I'm writing a simple project using Spring MVC. I have a Controller with a handler method annotated with @ResponseBody that returns a javax.xml.transform.Source. In my handler method, I return a...