spring cloudribbon应用植入

2024-01-18 21:32

本文主要是介绍spring cloudribbon应用植入,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

spring cloud&ribbon应用植入

  • 简介
  • 应用总览
    • 模块总览
    • 技术栈
  • 注册中心eureka-server
    • pom配置
    • bootstrap配置
    • application配置
    • 启动类
  • 用户中心user-center
    • pom配置
    • application配置
    • 启动项目
  • 用户中心提供的api user-center
  • 访问调用api admin-client-api
  • 总结
  • 参看文献
  • 源码

简介

随着微服务普及,懂得微服务变得越来越重要,也是java程序员的必备基础,个人为了学习和了解微服务的负载均衡ribbon的实现原理和feignClient基础知识,针对性搭建了基础微服务架构并后面一章节简单介绍微服务符合发现服务的源码,同时介绍一下开发技巧。

应用总览

模块总览

  1. 注册中心eureka-server
  2. 用户中心user-center
  3. 用户中心提供的api user-center
  4. 前端访问调用api admin-client-api
    如下图:
    在这里插入图片描述

技术栈

  1. maven 构建工具
  2. IntelliJ IDEA 开发工具
  3. spring boot 基础框架
  4. spring cloud rest微服务体系
  5. spring cloud feign 客户端调用
  6. ribbon 负载均衡

这里搭建是居于上一章节工程初始化,使用maven的模块化开发讲解。上一次工程源码(此步走可忽略,根据自己需要初始化)

注册中心eureka-server

服务注册中心主要提供发现服务功能,还有监听服务运行是否健康等情况

pom配置

这里使用spring security作为验证注册。配置如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.3.8.RELEASE</version><relativePath/> <!-- lookup parent from repository --></parent><modelVersion>4.0.0</modelVersion><artifactId>eureka-server</artifactId><properties><spring-cloud.version>Hoxton.SR9</spring-cloud.version><eureka-server.version>2.2.6.RELEASE</eureka-server.version></properties><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-security</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-server</artifactId><version>${eureka-server.version}</version></dependency></dependencies><dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>${spring-cloud.version}</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement><build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><mainClass>com.lgh.server.ServerApplication</mainClass></configuration></plugin></plugins></build>
</project>

bootstrap配置

spring:application:name: eureka-servercloud:config:uri: http://localhost:8888/eureka/

application配置

server:port: 8761
eureka:client:registerWithEureka: falsefetchRegistry: falseserver:waitTimeInMsWhenSyncEmpty: 0
spring:security:user:name: adminpassword: admin123456

启动类

在启动类中添加@EnableEurekaServer,作为注册中心服务器启动

@SpringBootApplication
@EnableEurekaServer
public class ServerApplication {public static void main(String[] args) {SpringApplication.run(ServerApplication.class, args);}
}

在上面配置完后并未完事,因为我们启动了spring security配置,这是security会防止跨站访问,我们需要配置security的跨域访问权限,否则eureka客户端将无法注册进来。

@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {@Overrideprotected void configure(HttpSecurity http) throws Exception {http.csrf().disable();super.configure(http);}@Overridepublic void configure(WebSecurity web) throws Exception {web.ignoring().antMatchers("/favicon.ico");super.configure(web);}
}

接下来我们启动main方法访问http://localhost:8761/ ,eureka服务器讲启动成功,如图
在这里插入图片描述

用户中心user-center

pom配置

这里因为是上一章节配置文件比较多,所以比较负责,简单项目接入只需要接入如下引入即可:

   <dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-openfeign</artifactId></dependency><dependency><groupId>com.netflix.feign</groupId><artifactId>feign-okhttp</artifactId><version>8.18.0</version></dependency><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency>

以及添加cloud管理

<dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>${spring-cloud.version}</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement>

application配置

eureka:instance:leaseRenewalIntervalInSeconds: 1leaseExpirationDurationInSeconds: 2preferIpAddress: trueclient:serviceUrl:defaultZone: http://admin:admin123456@127.0.0.1:8761/eureka/

启动项目

在你的启动项目添加如下注解
@EnableFeignClients
@EnableEurekaClient

启动项目后查看eureka服务器是否已经注册上
在这里插入图片描述

用户中心提供的api user-center

用户中心api主要提供feignClient给外部调用的jar包,这里只是简单描述,一个登录接口服务,一个验证登录服务,具体请查看后面源码:

@FeignClient(name = ServerConfig.USER_CENTER, path = "/login")
public interface ILogonClient {@PostMapping("/sign")LogonRepDTO login(@RequestBody LogonReqDTO logonReqDTO);@GetMapping("/verify")LogonRepDTO verify(@RequestParam("token") String token);
}

访问调用api admin-client-api

环境搭建和用户中心一致,不做重复讲解,这里主要讲解如何调用,针对前面文章讲解使用security验证登录,
spring获取feign ApplicationUtil.getBean(ILogonClient.class),如下:

public class MyAuthenticationFilter extends OncePerRequestFilter {@Overrideprotected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {String token = request.getHeader("token");if (StringUtils.isEmpty(token)) {filterChain.doFilter(request, response);} else {ILogonClient iLogonClient = ApplicationUtil.getBean(ILogonClient.class);LogonRepDTO logonRepDTO = iLogonClient.verify(token);if (logonRepDTO == null) {ObjectMapper objectMapper = ApplicationUtil.getBean(ObjectMapper.class);response.setContentType("application/json;charset=utf-8");response.getWriter().print(objectMapper.writeValueAsString(CommonResult.deny()));return;} else {UserDetail userDetail = new UserDetail();userDetail.setId(logonRepDTO.getId());userDetail.setName(logonRepDTO.getUserName());List<MySimpleGrantedAuthority> roles = new ArrayList<>();if (logonRepDTO.getUserResources() != null) {roles = logonRepDTO.getUserResources().stream().map(ResourceDomain::getResourceCode).map(MySimpleGrantedAuthority::new).collect(Collectors.toList());}MyAuthentication myAuthentication = new MyAuthentication(userDetail, roles);SecurityContextHolder.getContext().setAuthentication(myAuthentication);filterChain.doFilter(request, response);}}}
}

自动注入形式调用,如登录访问接口

@Api(tags = "登录服务")
@RestController
@RequestMapping("/login")
@Validated
public class LogonController {@Autowiredprivate ILogonClient iLogonClient;@ApiOperation("登录服务接口")@PostMapping("/sign")@Validpublic IResult<LogonRepDTO> login(@RequestBody LogonReqDTO logonReqDTO) {LogonRepDTO logonRepDTO = iLogonClient.login(logonReqDTO);return CommonResult.successData(logonRepDTO);}@GetMapping("/testFilter")public String testFilter() {return "available!";}
}

总结

这里总结自己在搭建过程中问题总结

  1. spring cloud和boot版本不一致问题,以及解决版本冲突方式,我们可以通过找到对应匹配版本或者通过maven的exclusions
  2. eurake server注册中心没法注册,因为开启了security跨站拦截,即使设置了用户名密码也无法访问,## http://admin:admin123456@127.0.0.1:8761/eureka/ ,需要设置http.csrf().disable(),在解决过程中可以通过去掉security看是否是security问题
  3. feign可指定IP访问,以便开发链条或者百名单形式配置
        eureka.client.enabled = false
        user-center.ribbon.listOfServers: localhost:8085 # 黑体是feign的name实例名
  4. 更多问题查看FeignClient如何寻址

参看文献

【1】HowToDoInJava
【2】feignClient

源码

spring cloud demo

这篇关于spring cloudribbon应用植入的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/620318

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory