我的服务守则如下......
@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());
}
}
我的申请
<security:global-method-security secured-annotations="enabled" jsr250-annotations="disabled" />
但是,当有人要求服务时。 采用gwt-rpc, 是t t prGwtSprMvcHibJpaDemo的,因为用户尚未认证,因此应当打印出安全错误? 相反,使用GwtSprMvcHibJpaDemo的方法是用产出执行的。
SecurityContextHolder.getContext()=org.springframework.security.context.SecurityContextImpl@ffffffff: Null authentication SecurityContextHolder.getContext().getAuthentication()=null