腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(9999+)
视频
沙龙
1
回答
配置问题(HttpSecurity http)错误:无法在
anyRequest
之后配置
antMatchers
、
、
、
method 'springSecurityFilterChain' threw exception; nested exception is java.lang.IllegalStateException:
Can
'
t
configure
antMatchers
after
anyRequest
在stacktrace的末尾: Caused by: java.lang.IllegalStateException:
Can
'
浏览 375
提问于2020-01-16
得票数 0
3
回答
弹簧引导安全块非RestController端点
、
、
下面是我当前的配置,但它并不能阻止不需要的端点:public void
configure
(WebSecurity web) throws Exception { web.ignoring().
antMatchers
("/api/**").
antMatchers
("/v2/**").
antMatchers
("/webjars/**").
antMatchers
浏览 0
提问于2018-12-10
得票数 0
2
回答
未能实例化[javax.servlet.Filter]:工厂方法'springSecurityFilterChain‘不能在
anyRequest
之后配置
antMatchers
、
、
、
method 'springSecurityFilterChain' threw exception; nested exception is java.lang.IllegalStateException:
Can
'
t
configure
antMatchers
after
anyRequest
protected void
co
浏览 14
提问于2022-05-17
得票数 0
回答已采纳
1
回答
如何使用Spring验证用户?
、
、
、
class WebSecurityConfig extends WebSecurityConfigurerAdapter { protected void
configure
http) throws Exception { .authorizeRequests() .
浏览 0
提问于2019-07-12
得票数 0
1
回答
使用JWT实现微服务之间的安全通信
、
、
、
我使用Spring Boot构建了3个微服务:2和3-执行某些操作的微服务(REST API)。假设我正在将令牌传递给微服务2和3--我如何验证令牌的完整性?微服务2和3是否需要与微服务1通信?
浏览 0
提问于2019-07-13
得票数 1
1
回答
使用nginx代理的keycloak春季引导仅在redirect_uri本地主机上有效。
、
、
、
、
RegisterSessionAuthenticationStrategy(new SessionRegistryImpl()); protected void
configure
(HttpSecurity http) throws Exception { http.authorizeRequests() .
antMatchers
("/portal/cl
浏览 0
提问于2021-04-28
得票数 1
回答已采纳
2
回答
在springboot中限制put、delete和options请求
、
、
、
@Override .
antMatchers
(HttpMethod.OPTIONS, "/**").denyAll() .
浏览 2
提问于2019-08-16
得票数 0
4
回答
无法在
antMatchers
后配置
anyRequest
(多个antMatcher)
、
、
我正在尝试配置Security并获得以下错误: private UserDetailsService userDetailsService; protected void
configure
auth.userDetailsService(userDetailsService).passwordEncoder
浏览 3
提问于2020-02-08
得票数 12
回答已采纳
1
回答
401对REST API的每个请求都是未经授权的
、
、
authenticationJwtTokenFilter() { } public void
configure
passwordEncoder() { } protected void
configure
authorizeRequests() .
antMatch
浏览 0
提问于2019-02-24
得票数 0
3
回答
使用用户角色和Spring安全性保护URL
、
、
、
String adminAccess[] = new String[]{"/dashboard/**", "/data/**", "/admin/**"}; protected void
configure
(publicResources).permitAll() .
antMatchers
(userAccess).hasRole("USER").
anyRequest<
浏览 3
提问于2019-12-18
得票数 1
回答已采纳
1
回答
嵌套异常是java.lang.IllegalStateException:无法在
anyRequest
之后配置
anyRequest
、
我正在尝试这段代码,但得到了这个异常:嵌套异常是: private UserDetailsService userDetailsService; protected void
configure
auth.userDetailsService(userDetailsService).passwordEncoder(encodePWD());
浏览 0
提问于2020-06-30
得票数 0
3
回答
Spring boot安全性
、
、
) @Override return super.authenticationManagerBean(); protected void
configure
(HttpSecurity http) throws Exception { super.
confi
浏览 23
提问于2017-08-10
得票数 1
1
回答
Spring boot和Spring Security,不同的登录表单使用不同的成功处理程序
、
、
、
我有一个使用spring security的spring boot/mvc站点。我必须使用登录的方式,在每个页面上的导航栏和登录页面,当你试图访问一个受限制的资源时,你会被重定向到这个页面。 对于导航栏,我希望用户在登录页面成功登录后留在页面上,我希望用户在登录后被重定向到他们最初尝试访问的资源。 我可以单独完成每个功能。首先,通过以下方式处理用例: SimpleUrlAuthenticationSuccessHandler handler = new SimpleUrlAuthenticationSuccessHandler(); handler.setUseReferer(tr
浏览 10
提问于2019-03-14
得票数 0
1
回答
Spring引导:如何跳过特定端点的basic-auth
、
、
、
userDetailsService); } public void
configure
(WebSecurity web) throws Exception { .ignoring()} protected void <e
浏览 0
提问于2019-09-13
得票数 0
回答已采纳
1
回答
弹簧安全HTTPS
、
、
、
@Override http .
antMatchers
("/resources/**").permitAll() .authorizeRequests() .
anyRequest</
浏览 3
提问于2016-10-21
得票数 2
回答已采纳
2
回答
ant matcher如何在spring安全中工作
、
、
Configuration protected void
configure
(HttpSecurity http)throws Exception{ }这是我的问题: 根据我的理解,"
antMatchers</e
浏览 1
提问于2021-05-22
得票数 0
1
回答
请求意外授权的spring引导安全性
、
、
、
我试过这样的代码: protected void
configure
(HttpSecurity http) throws Exception { .authorizeRequests().
antMatchers
("/","/signUp").permitAll().
anyRequest
(@Override protected void
configure<
浏览 0
提问于2019-09-09
得票数 0
2
回答
HttpSecurity配置-全部允许仍需要基本身份验证
、
、
、
这是我的WebSecurityConfigurerAdapter: .authorizeRequests() .loginPage("/login").permitAll() .requestMatchers() .
antMatchers
"/login", "
浏览 0
提问于2016-03-28
得票数 7
回答已采纳
1
回答
保护应用程序后无法访问静态文件
、
、
@Override http .
antMatchers
("/", "/home").permitAll() .and()
浏览 0
提问于2017-02-07
得票数 0
回答已采纳
1
回答
如何使初始登陆页面不是从春季安全登录表单?
、
、
、
这是我的WebSecurityConfig.java http.authorizeRequests() .
antMatchers
("/js/**").permitAll()
浏览 1
提问于2019-11-10
得票数 1
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
啥是SpringSecurity基于数据库认证
springboot-security
SpringBoot+SpringSecurity处理Ajax登录请求
TopCoder SRM 731 Div2 Easy题解报告
英国小哥哥企图用“易容术”骗过中国人脸识别技术,能成功吗?
热门
标签
更多标签
云服务器
ICP备案
对象存储
即时通信 IM
实时音视频
活动推荐
运营活动
广告
关闭
领券