删除数据

This commit is contained in:
YY
2025-07-10 16:28:50 +08:00
parent 92b1d9f280
commit 35234fb9cc
2 changed files with 29 additions and 41 deletions

View File

@ -1,18 +0,0 @@
package com.chinaunicom.zyhy.ebtp.supplier.common;
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();
}
}