Spring Cloud 服务的注册与发现之eureka搭建

世上唯一不能复制的是时间,唯一不能重演的是人生,唯一不劳而获的是年龄。该怎么走,过什么样的生活,全凭自己的选择和努力。人生很贵,请别浪费!与智者为伍,与良善者同行。Spring Cloud 服务的注册与发现之eureka搭建,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

1.创建eureka微服务模块。导入maven依赖。

<dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-erver</artifactId>
</dependency>

依赖前提父工程pom已经引入springcloud alibaba。

 <dependency>
        <groupId>com.alibaba.cloud</groupId>
        <artifactId>spring-cloud-alibaba-dependencies</artifactId>
        <version>${spring-cloud-alibaba.version}</version>
</dependency>

Spring Cloud 服务的注册与发现之eureka搭建

2.在yml中配置服务的相关参数

eureka:
  instance:
    hostname: localhost #erueka服务所在的ip地址
  client:
    register-with-eureka: false #是否向注册中心注册自己
    fetch-registry: false  #是否允许从erueka服务端中拉取服务
    service-url: #注册中心地址
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/

启动类加上

@EnableEurekaServer

配置成功后就可以正常访问eureka注册中心了。

Spring Cloud 服务的注册与发现之eureka搭建

3. Eureka Server加上安全的用户认证

默认情况下,知道地址和端口,就能访问和查看所有微服务的状态以及一些监控信息,这样没有安全性。我们需要加上用户认证

导入依赖

<dependency>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-security</artifactId>
</dependency>

4.配置认证

spring:
  application:
    name: cloud-eureka-server
    # 安全认证的配置
  security:
    user:
      name: eternity
      password: 1234qwer
defaultZone改为:
 service-url: #注册中心地址
      defaultZone: http://${spring.security.user.name}:${spring.security.user.password}@${eureka.instance.hostname}:${server.port}/eureka/

5.关闭csrf

security默认开启csrf,一定要关掉,不然注册中心能启动,但是服务无法注册进来。

@EnableWebSecurity
@Configuration
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity httpSecurity) throws Exception {
        httpSecurity.csrf().disable(); //关闭csrfsuper.configure(auth);
    }
}

6.启动

Spring Cloud 服务的注册与发现之eureka搭建

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/260287.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!