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 进行查看

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐