I made a custom build for myself and hard-coded it in
XStreamExecutionContextStringSerializer class init() method
xstream.autodetectAnnotations(true);
and works fine :D
Type: Posts; User: Mogy; Keyword(s):
I made a custom build for myself and hard-coded it in
XStreamExecutionContextStringSerializer class init() method
xstream.autodetectAnnotations(true);
and works fine :D
I can't find any configuration for this, is there a way to setup xstream autodetectAnnotations for the JobExecutionContext serializer ?
I have a hibernate object with relations and when I try to...
I give a up for this, lets hope that someone can answer it.
I turn on the logging for spring security (log4j.logger.org.springframework.security=DEBUG),
but it did not show to much.
-- START LOG --
17:12:06,250 DEBUG...
When I login with a user ROLE_USER and I call
CustomeClass.methodThree() => AccessDeniedException
but when I try to call the inherited methods from the base class
CustomeClass.methodOne() or...
I use spring-security-3.0.5 and got two class like
class BaseClass {
public methodOne() {
}
public methodTwo(){
}
}
@PreAuthorize("hasRole('ROLE_ADMIN')")