This commit is contained in:
YY
2025-07-08 08:34:27 +08:00
parent 4dccf02ca3
commit 8388577b56

View File

@ -0,0 +1,18 @@
package com.chinaunicom.zyhy.ebtp.supplier.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.anyRequest().permitAll()
.and()
.csrf().disable();
}
}