Spring注解配置看起来像是开销

发布于 2024-10-19 10:26:44 字数 347 浏览 0 评论 0原文

我刚刚面临,为了使用 Spring Security 的特定注释,
我应该在我的配置(applicationContext.xml)中明确允许它们
示例:

<sec:global-method-security secured-annotations="enabled" />
<sec:global-method-security jsr250-annotations="enabled" />
...

您认为在我们的框架应用程序中显式声明哪些注释
的方法有什么优点?

看起来像是过度配置,不是吗?

I just faced,that in order to use specific annotations for Spring Security,
I should explicitely allow them in my config(applicationContext.xml)
Example:

<sec:global-method-security secured-annotations="enabled" />
<sec:global-method-security jsr250-annotations="enabled" />
...

What advantages do you see in approach of explicitely declare what annotations
are allowed in our frameworked application?

Looks like overconfiguration,isn't it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帅哥哥的热头脑 2024-10-26 10:26:44

一个可能的好处是,当类路径中不存在所需的注释时,它允许 Spring Security 抛出异常(尽管它主要与 JSR-250 注释有关,因为其他注释是 Spring Security 本身的一部分)。

否则 Spring Security 将不得不默默地忽略注释的缺失,这可能会导致令人惊讶的行为。

One possible benefit is that it allows Spring Security to throw an exception when desired annotations are not present in the classpath (though it's mostly about JSR-250 annotations, since other annotations are parts of Spring Security itself).

Otherwise Spring Security would have to silently ignore absence of annotations, that may lead to surprising behaviour.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文