Spring Cloud 升级为Greenwich.SR2版本后的修改
1、pom文件修改:spring-clospring-cloud-starter-eureka-server改为:spring-cloud-starter-netflix-eureka-server2、Spring Cloud使用Security认证:,我们需要主动去关闭,在Eureka服务配置新版的Spring security 会默认开启防csrf攻击,所有的请求都必须携带c...
·
1、pom文件修改:
spring-clospring-cloud-starter-eureka-server 改为:spring-cloud-starter-netflix-eureka-server
2、Spring Cloud使用Security认证 :
,我们需要主动去关闭,在Eureka服务配置新版的Spring security 会默认开启防csrf攻击,所有的请 求都必须携带crsf这个参数:代码如下
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
/**
* @param http
* @throws Exception
*/
@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
super.configure(http);
}
}
3、Spring Cloud 和Spring Boot的版本,如何选择:
访问:https://start.spring.io/info 进行查看
更多推荐
已为社区贡献1条内容
所有评论(0)