windows 搭建eureka注册中心

之前一直把环境搭到linux,刚好有一台闲置电脑,节约内存 把 注册中心放到这台闲置的电脑上。

pom文件 有安全验证



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.9.RELEASE
         
    
    com.fpy
    29-mangeurekaserver
    0.0.1-SNAPSHOT
    29-mangeurekaserver
    Demo project for Spring Boot

    
        1.8
        Greenwich.SR4
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
        
       
        
            org.springframework.cloud
            spring-cloud-starter-security
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


开启安全验证 2.*版本的cloud 不再提供内置的 开启方式 需要手动配置

package com.fpy.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;

@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {

        http.csrf().disable();     //关闭跨域
        http.httpBasic()////使用Spring Security提供的登录界面
                .and()
                .authorizeRequests()
                .anyRequest()
                .authenticated();//所有请求都需要登录认证才能访问
        System.out.println("《======安全验证已经开启======》");
    }
}

配置文件:

windows 搭建eureka注册中心_第1张图片

application.properties

windows 搭建eureka注册中心_第2张图片

windows 搭建eureka注册中心_第3张图片

 

windows 搭建eureka注册中心_第4张图片

然后项目打包 就可以发布了,需要用到 java命令 所以电脑上 需要安装jdk.

windows 搭建eureka注册中心_第5张图片

执行命令

java -jar xxx.jar --spring.profiles.active=你的环境名

eg:

  java -jar 29-mangeurekaserver-0.0.1-SNAPSHOT.jar --spring.profiles.active=master

windows 搭建eureka注册中心_第6张图片

 

你可能感兴趣的:(SpringClould)