bug修复

This commit is contained in:
guo 2023-12-29 17:44:24 +08:00
parent c3547173d7
commit 76b0fe6282

View File

@ -291,6 +291,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/xmgl/rtConstructionDraw/page").permitAll()
.antMatchers("/xmgl/rtNewTechnologiesAndNewProcess/page").permitAll()
.antMatchers("/xmgl/taskProgress/queryById").permitAll()
.antMatchers("/xmgl/videoItem/getPlayUrlFromHikvision").permitAll()
.antMatchers(HttpMethod.OPTIONS, "/**").anonymous()
.anyRequest().authenticated() // 剩下所有的验证都需要验证
.and()