私のサービスのコードは次のとおりです...
@Controller
@GwtRpcEndPoint
public class ServerServiceImpl implements ServerService {
@org.springframework.security.annotation.Secured("ROLE_ADMIN")
public String runGwtSprMvcHibJpaDemo(String s) {
System.out.println("SecurityContextHolder.getContext()="+SecurityContextHolder.getContext());
System.out.println("SecurityContextHolder.getContext().getAuthentication()="+SecurityContextHolder.getContext().getAuthentication());
}
}
私のapplicationContext.xml
<security:global-method-security secured-annotations="enabled" jsr250-annotations="disabled" />
しかし、gwt-rpc を介して serviceImpl を呼び出すと、ユーザーがまだ認証されていないため、runGwtSprMvcHibJpaDemo はセキュリティ エラーを出力するはずではありませんか? むしろ、メソッド runGwtSprMvcHibJpaDemo が出力とともに実行されます。
SecurityContextHolder.getContext()=org.springframework.security.context.SecurityContextImpl@ffffffff: Null authentication SecurityContextHolder.getContext().getAuthentication()=null