我可以使用 和<用户名密码验证过滤器>同时在春季安全
有人知道我可以在 spring security.xml 中同时使用 和 吗?目前,我在 xml 中的标签下使用 UsernamePasswordAuthenticationFilter 。 但是,当我将自动配置设置为“true”并将 @Secured("ROLE_ADMIN") 放入控制器类中时,我遇到了异常,例如期望构造函数或参数没有方法。
我该如何解决这个问题? 谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
忘记使用
自动配置
。这带来的麻烦多于其价值。只需手动添加您想要的配置元素即可。如果您收到有关没有 null 构造函数的错误,那么这可能就是原因。不过,请务必发布您的例外情况。
Forget about using
auto-config
. It is more trouble than it is worth. Just add the configuration elements you want manually.If you are getting an error about not having a null constructor, then this is probably the reason. Always post your exception though.