如何限制 Spring Security 可保护的类?
我注意到我的应用程序的启动时间变得非常慢。一个问题是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在 Spring 配置中定义了基础包?
Have you defined a base-package in your Spring config?