spring boot 整合security 4 怎么设置忽略的静态资源

 我来答
小Cherry丸子吖
2018-03-31 · TA获得超过2.7万个赞
知道小有建树答主
回答量:144
采纳率:43%
帮助的人:17.1万
展开全部
  1. public void configure(WebSecurity web) throws Exception {;

  2. web.ignoring().antMatchers("/assets/**","/images/**","/**/*.jsp");

  3. protected void configure(HttpSecurity http) throws Exception {;

  4. http.portMapper().http(80).mapsTo(443);

  5. http.addFilterBefore(mySecurityInterceptor,FilterSecurityInterceptor.class);

  6. authorizeRequests();

  7. //.antMatchers("/webapp/**").permitAll();

  8. //.antMatchers("/images/*.jpg").permitAll();

  9. //.antMatchers("/images/*.png").permitAll();

  10. //.antMatchers("/**/*.js").permitAll();

  11. //.antMatchers("/**/*.css").permitAll();

  12. //.antMatchers("/**/*.woff").permitAll();

  13. //.antMatchers("/**/*.woff2").permitAll();

  14. //.antMatchers("/**/*.jsp").permitAll();

  15. //.antMatchers("/**/*.html").permitAll();

  16. //.antMatchers("/favicon.ico").permitAll();

  17. //.antMatchers("/admin/*").permitAll();

  18. //.antMatchers("/sys/**").permitAll();

  19. anyRequest().authenticated().and();

  20. ormLogin();

  21. loginPage("/admin/login").permitAll();

  22. loginProcessingUrl("/sys/welcome");

  23. permitAll();

  24. passwordParameter("loginPwd");

  25. usernameParameter("loginId");

  26. failureUrl("/admin/sessiontimeout");

  27. logoutUrl("/admin/logout");

  28. permitAll();

  29. invalidateHttpSession(true);

  30. and().exceptionHandling();

  31. accessDeniedHandler(myAccessDeniedHandler);

  32. accessDeniedPage("/admin/accessDefine");

  33. and()。

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Storm代理
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I... 点击进入详情页
本回答由Storm代理提供
己学好4
2016-10-20 · TA获得超过1.5万个赞
知道大有可为答主
回答量:1.1万
采纳率:91%
帮助的人:5187万
展开全部
@Override
public void configure(WebSecurity web) throws Exception {

web.ignoring().antMatchers("/assets/**","/images/**","/**/*.jsp");
}

@Override
protected void configure(HttpSecurity http) throws Exception {
http.portMapper().http(80).mapsTo(443);
http.addFilterBefore(mySecurityInterceptor,FilterSecurityInterceptor.class)
.authorizeRequests()
// .antMatchers("/webapp/**").permitAll()
// .antMatchers("/images/*.jpg").permitAll()
// .antMatchers("/images/*.png").permitAll()
// .antMatchers("/**/*.js").permitAll()
// .antMatchers("/**/*.css").permitAll()
// .antMatchers("/**/*.woff").permitAll()
// .antMatchers("/**/*.woff2").permitAll()
// .antMatchers("/**/*.jsp").permitAll()
// .antMatchers("/**/*.html").permitAll()
// .antMatchers("/favicon.ico").permitAll()
// .antMatchers("/admin/*").permitAll()
// .antMatchers("/sys/**").permitAll()
.anyRequest().authenticated().and()
.formLogin()
.loginPage("/admin/login").permitAll()
.loginProcessingUrl("/sys/welcome")
.permitAll()
.passwordParameter("loginPwd")
.usernameParameter("loginId")
.failureUrl("/admin/sessiontimeout")
.permitAll()
.defaultSuccessUrl("/sys/welcome")
.permitAll()
.and()
.logout()
.logoutUrl("/admin/logout")
.permitAll()
.invalidateHttpSession(true)
.and()
.exceptionHandling()
.accessDeniedHandler(myAccessDeniedHandler)
.accessDeniedPage("/admin/accessDefine")
.and();
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式