SpringCloud 1:Eureka 用户认证

项目搭建参考https://blog.csdn.net/qq_40977118/article/details/104738485

1. 引入jar包

<!--用户认证-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
</dependency>

2. 关闭 csrf 验证

在这里插入图片描述

package com.spring.fisher;

import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@EnableWebSecurity
public class WebSecurityConfigurer extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        //关闭csrf
        http.csrf().disable();
        //开启认证:URL格式登录必须是httpBasic
        http.authorizeRequests().anyRequest().authenticated().and().httpBasic();
    }
}

3. application.properties 配置

  • 开启 basic 校验,设置登录用户名密码

在这里插入图片描述

#开启 basic 校验,设置登录用户名密码
security.basic.enabled=true
spring.security.user.name=root
spring.security.user.password=root

4. Eureka 客户端改造

  • 跟 eureka 连接的时候要带上用户名密码

在这里插入图片描述

eureka.client.serviceUrl.defaultZone=http://root:root@localhost:8763/eureka/

5. 启动eureka服务端

在这里插入图片描述

6. 访问http://localhost:8763/,输入用户名密码

在这里插入图片描述
在这里插入图片描述

7. 启动micro-order与micro-web

在这里插入图片描述

8. 发起请求,查看打印

在这里插入图片描述
在这里插入图片描述

代码下载地址

https://gitee.com/fisher3652/springcloud-eureka.git

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值