我刚刚面对,为了对 Spring Security 使用特定的注释,
我应该在我的 config(applicationContext.xml)
示例中明确允许它们:
<sec:global-method-security secured-annotations="enabled" />
<sec:global-method-security jsr250-annotations="enabled" />
...
您认为在我们的框架化应用程序中明确声明允许哪些注释的方法有什么优势?
看起来像过度配置,不是吗?