Commit df51efba authored by limei's avatar limei

解决未经授权问题

parent 5fea6b38
//package com.yeejoin.amos.boot.module.ugp.biz.config;
//import org.springframework.context.annotation.Configuration;
//import org.springframework.security.config.annotation.web.builders.HttpSecurity;
//import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
//import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
//
//@Configuration
//@EnableWebSecurity
//public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
// // 授权
// @Override
// protected void configure(HttpSecurity http) throws Exception {
// http.csrf().disable()
// .headers()
// .frameOptions()
// .disable()
// .and()
// .authorizeRequests()
// .regexMatchers("^(?!/actuator).*$").permitAll()
// .regexMatchers("/actuator/health").permitAll()
// .regexMatchers("/actuator/info").permitAll()
// .anyRequest().authenticated().and()
// .formLogin();
// }
//}
......@@ -33,4 +33,7 @@ params.work.flow.processDefinitionKey=xiangmulixiangliucheng
params.work.flow.problemDefinitionKey=zhiliangwentiliucheng
amos.secret.key=ugp
#logging.level.com.yeejoin.amos=error
\ No newline at end of file
#logging.level.com.yeejoin.amos=error
#spring.security.user.name=admin
#spring.security.user.password=a1234560
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment