|
@@ -0,0 +1,18 @@
|
|
|
|
+package cn.gygxzc.cloud.tina.eureka.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;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Created by niantuo on 2018/12/12.
|
|
|
|
+ */
|
|
|
|
+@Configuration
|
|
|
|
+public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ protected void configure(HttpSecurity http) throws Exception {
|
|
|
|
+ http.csrf().disable(); //关闭csrf
|
|
|
|
+ http.authorizeRequests().anyRequest().authenticated().and().httpBasic(); //开启认证
|
|
|
|
+ }
|
|
|
|
+}
|