提交 a24882f2 编写于 作者: TANGYAOLONG's avatar TANGYAOLONG

放行新报表端口

上级 11bdfe75
...@@ -120,8 +120,10 @@ public class webSecurityConfig extends WebSecurityConfigurerAdapter { ...@@ -120,8 +120,10 @@ public class webSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/"+downloadpath+"/**").permitAll() .antMatchers("/"+downloadpath+"/**").permitAll()
.antMatchers("/"+uploadpath).permitAll() .antMatchers("/"+uploadpath).permitAll()
.antMatchers("/"+previewpath+"/**").permitAll() .antMatchers("/"+previewpath+"/**").permitAll()
.antMatchers("/ibizutil/**").permitAll()
.antMatchers("/dst/**").permitAll(); .antMatchers("/dst/**").permitAll();
for (String excludePattern : excludesPattern) { for (String excludePattern : excludesPattern) {
authenticationTokenFilter.addExcludePattern(excludePattern); authenticationTokenFilter.addExcludePattern(excludePattern);
httpSecurity.authorizeRequests().antMatchers(excludePattern).permitAll(); httpSecurity.authorizeRequests().antMatchers(excludePattern).permitAll();
......
...@@ -118,7 +118,8 @@ public class DevBootSecurityConfig extends WebSecurityConfigurerAdapter { ...@@ -118,7 +118,8 @@ public class DevBootSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/"+uploadpath).permitAll() .antMatchers("/"+uploadpath).permitAll()
.antMatchers("/dst/**").permitAll() .antMatchers("/dst/**").permitAll()
.antMatchers("/lite/**").permitAll() .antMatchers("/lite/**").permitAll()
.antMatchers("/"+previewpath+"/**").permitAll(); .antMatchers("/ibizutil/**").permitAll()
.antMatchers("/"+previewpath+"/**").permitAll();
for (String excludePattern : excludesPattern) { for (String excludePattern : excludesPattern) {
......
...@@ -123,6 +123,7 @@ public class apiSecurityConfig extends WebSecurityConfigurerAdapter { ...@@ -123,6 +123,7 @@ public class apiSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/"+uploadpath).permitAll() .antMatchers("/"+uploadpath).permitAll()
.antMatchers("/"+previewpath+"/**").permitAll() .antMatchers("/"+previewpath+"/**").permitAll()
.antMatchers("/dst/**").permitAll() .antMatchers("/dst/**").permitAll()
.antMatchers("/ibizutil/**").permitAll()
.antMatchers("/lite/**").permitAll(); .antMatchers("/lite/**").permitAll();
for (String excludePattern : excludesPattern) { for (String excludePattern : excludesPattern) {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册