如何限制 Spring Security 可保护的类?

发布于 2025-01-06 18:55:14 字数 138 浏览 1 评论 0原文

我注意到我的应用程序的启动时间变得非常慢。一个问题是 Spring Security 正在扫描整个类路径,包括我的依赖 jar,以查找可能使用安全注释进行注释的类。作为此代码的维护者,我确信只有我的特定包“com.company”需要受到保护?春天有这个选择吗?

I have noticed that the startup time on my app is getting brutally slow. One problem is that spring security is scanning the entire classpath including my dependant jars for classes that might be annotated with secure annotations. As the maintainer of this code, I feel confident only my particular package 'com.company' will need to be secured? Is this an option in spring?

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

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

发布评论

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

评论(1

不爱素颜 2025-01-13 18:55:14

您是否在 Spring 配置中定义了基础包?

<context:component-scan base-package="com.yourcompany"/>

Have you defined a base-package in your Spring config?

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