mirror of https://gitee.com/maxjhandsome/pig
fixed : 升级后 access define 问题
This commit is contained in:
parent
97654d503a
commit
99c4a9eb45
|
@ -1,25 +1,23 @@
|
|||
package com.github.pig.auth.config;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.autoconfigure.security.SecurityProperties;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.core.annotation.Order;
|
||||
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;
|
||||
import org.springframework.security.core.userdetails.UserDetailsService;
|
||||
|
||||
/**
|
||||
* @author lengleng
|
||||
* @date 2018/1/6
|
||||
* AUTH-SERVER 安全配置
|
||||
* 要在 auth-server 配置之后
|
||||
* why add order?
|
||||
* https://stackoverflow.com/questions/42822875/springboot-1-5-x-security-oauth2
|
||||
*/
|
||||
@Order(value = Integer.MAX_VALUE)
|
||||
@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)
|
||||
@Configuration
|
||||
@EnableWebSecurity
|
||||
public class PigWebSecurityConfig extends WebSecurityConfigurerAdapter {
|
||||
@Autowired
|
||||
private UserDetailsService userDetailsService;
|
||||
|
||||
@Override
|
||||
protected void configure(HttpSecurity http) throws Exception {
|
||||
|
|
Loading…
Reference in New Issue