springcloud 复习day2~[条件装配]

条件装配:

注解:@Condition

定义一个注解

import org.springframework.context.annotation.Conditional;import java.lang.annotation.*;/*** @author Gavin*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
@Documented
@Conditional(LoginFilterCondition.class)
public @interface LoginTaskConditionOnProperTy {String value();String prefix() default "";String havingValue() default "";boolean matchIfMissing() default false;boolean relaxedNames() default true;
}

配置类:

在特定条件下加载bean

这里通过配置文件(元数据) 中特定的值来实现,也可以直接在LoginFilterCondition类中添加别的逻辑


import com.hmrs.filter.LoginFilter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;/*** @author Gavin*/
//@ConditionalOnProperty(prefix = "login", name = "enable", havingValue = "true")
@Configuration
public class LoginFilterWebConfig {/*** 注册LoginFilter*  目的:当配置文件中有元数据 login 且值为 true时 装载LoginFilter 类* @return 返回实例*/@LoginTaskConditionOnProperTy(value = "login" ,havingValue = "true")@Beanpublic LoginFilter buildFilter() {return new LoginFilter();}
}

做法—>实现Condition接口

import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;
import org.springframework.util.MultiValueMap;import java.util.List;/*** @author Gavin*/
public class LoginFilterCondition implements Condition {@Overridepublic boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
//        取得指定类型注解的所有的属性MultiValueMap<String, Object> allAnnotationAttributes = metadata.getAllAnnotationAttributes(LoginTaskConditionOnProperTy.class.getName());List<Object> objectList = allAnnotationAttributes.get("value");List<Object> havingValue = allAnnotationAttributes.get("havingValue");String property = context.getEnvironment().getProperty((String) objectList.get(0));return property.equals(havingValue.get(0));}
}

配置config


import com.hmrs.filter.LoginFilter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;/*** @author Gavin*/
//@ConditionalOnProperty(prefix = "login", name = "enable", havingValue = "true")
@Configuration
public class LoginFilterWebConfig {/*** 注册LoginFilter** @return 返回实例*/@LoginTaskConditionOnProperTy(value = "login" ,havingValue = "true")@Beanpublic LoginFilter buildFilter() {return new LoginFilter();}
}

LoginFilter类如下


import com.alibaba.fastjson2.JSONObject;
import com.hmrs.comm.BaseResult;
import com.hmrs.service.RedisRWService;
import com.hmrs.util.HmrsUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;/*** @author Gavin*/
@Slf4j
public class LoginFilter implements Filter {@Autowiredprivate RedisRWService redisRWService;@Overridepublic void init(FilterConfig filterConfig) throws ServletException {if (redisRWService.hasKey("Gavin")){log.info("redis中已有key");}else{log.info("设置redis的key");redisRWService.saveObjData("Gavin", "Gavin");redisRWService.setKeyExpireTime("Gavin", 72);}}@Overridepublic void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {if (request instanceof HttpServletRequest){if (redisRWService.hasKey("Gavin")) {log.info("Gavin过滤器已生效");chain.doFilter(request, response);} else {log.info("Gavin过滤器已失效");BaseResult baseResult = HmrsUtils.setHttpBaseResult(400, "failed", "接口已失效");HmrsUtils.returnJson((HttpServletResponse) response, JSONObject.toJSONString(baseResult));return;}}else{return ;}}@Overridepublic void destroy() {}
}

在Spring Boot中,针对@Conditional做了扩展,提供了更简单的使用形式,

扩展注解如下:
ConditionalOnBean/ConditionalOnMissingBean:容器中存在某个类或者不存在某个Bean时进行Bean装载

ConditionalOnClass/ConditionalOnMissingClass:classpath下存在指定类或者不存在指定类时进行Bean装载

ConditionalOnCloudPlatform:只有运行在指定的云平台上才加载指定的Bean

ConditionalOnExpression:基于SpEl表达式的条件判断

ConditionalOnJava:只有运行指定版本的Java才会加载Bean

ConditionalOnJndi:只有指定的资源通过JNDI加载后才加载Bean

ConditionalOnWebApplication/ConditionalOnNotWebApplication:如果是Web应用或者不是Web应用,才加载指定的Bean

ConditionalOnProperty:系统中指定的对应的属性是否有对应的值

ConditionalOnResource:要加载的Bean依赖指定资源是否存在于classpath中

ConditionalOnSingleCandidate:只有在确定了给定Bean类的单个候选项时才会加载Bean

上面的代码就可以简化为:

下面一点代码:

可打断点测试

import com.hmrs.filter.LoginFilter;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;/*** @author Gavin*/
//@ConditionalOnProperty(prefix = "login", name = "enable", havingValue = "true")
@Configuration
public class LoginFilterWebConfig {/*** 注册LoginFilter** @return 返回实例*/
//    @LoginTaskConditionOnProperTy(value = "login" ,havingValue = "true")//原始做法@ConditionalOnProperty(value = "login",havingValue = "true",matchIfMissing = true)@Beanpublic LoginFilter buildFilter() {return new LoginFilter();}
}

如果matchIfMissing的值为true,则没有匹配上不回加载,如果为false 则即使没有匹配上也会加载

自定义starter

基本依赖:

  <dependencies><dependency><groupId>org.redisson</groupId><artifactId>redisson</artifactId><version>3.11.1</version></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot</artifactId><version>2.7.12</version></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-autoconfigure</artifactId><version>2.7.12</version></dependency></dependencies>

配置类:


import org.springframework.boot.context.properties.ConfigurationProperties;/*** @author Gavin* 这里的前缀即配置文件中的前缀*/
@ConfigurationProperties(prefix = "gavin.redisson")
public class RedissonProperties {private String host ="localhost";private String password ;private int port =6379;private boolean ssl;private Integer timeOut;public String getHost() {return host;}public Integer getTimeOut() {return timeOut;}public void setTimeOut(Integer timeOut) {this.timeOut = timeOut;}public void setHost(String host) {this.host = host;}public String getPassword() {return password;}public void setPassword(String password) {this.password = password;}public int getPort() {return port;}public void setPort(int port) {this.port = port;}public boolean isSsl() {return ssl;}public void setSsl(boolean ssl) {this.ssl = ssl;}
}

根据配置类创建bean

import org.redisson.Redisson;
import org.redisson.api.RedissonClient;
import org.redisson.config.Config;
import org.redisson.config.SingleServerConfig;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.util.StringUtils;@Configuration
@ConditionalOnClass(Redisson.class)
@EnableConfigurationProperties(RedissonProperties.class)
public class RedissonAutoConfiguration {@Beanpublic RedissonClient redissonClient(RedissonProperties redissonProperties) {Config config = new Config();String prefix = "redis://";if (redissonProperties.isSsl()) {prefix = "rediss://";}SingleServerConfig singleServerConfig = config.useSingleServer().setAddress(prefix + redissonProperties.getHost() + ":" + redissonProperties.getHost()).setConnectTimeout(redissonProperties.getTimeOut());if (!StringUtils.isEmpty(redissonProperties.getPassword())) {singleServerConfig.setPassword(redissonProperties.getPassword());}return Redisson.create(config);}
}

最后重要的一步:

在resources下创建META-INF/spring,factories文件,使得Spring Boot程序可以扫描到该文件完成自动装配,

#在resources下创建META-INF/spring.factories文件,使得Spring Boot程序可以扫描到该文件完成自动装配,key和value对应如下
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\com.gavin.RedissonAutoConfiguration

最后打包即可,然后引用该包,最后在配置文件中按需配置即可

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/769711.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ffmpeg拉流并解码

流程 注意事项 版本不同导致的api差异资源安全释放

激光焊接机在不锈钢三角阀制造中的应用与发展

不锈钢三角阀激光焊接机是一种专门用于焊接不锈钢三角阀的高效、精准设备。这种设备在不锈钢三角阀的制造过程中起到了至关重要的作用&#xff0c;其应用主要体现在以下几个方面&#xff1a; ​ 一、激光焊接机在不锈钢三角阀制造中的应用 激光焊接机以其独特的优势&#xff…

力扣450 删除二叉搜索树中的节点 Java版本

文章目录 题目描述思路代码 题目描述 给定一个二叉搜索树的根节点 root 和一个值 key&#xff0c;删除二叉搜索树中的 key 对应的节点&#xff0c;并保证二叉搜索树的性质不变。返回二叉搜索树&#xff08;有可能被更新&#xff09;的根节点的引用。 一般来说&#xff0c;删除…

【CKA模拟题】如何发布一个SVC资源

题干 For this question, please set this context (In exam, diff cluster name) kubectl config use-context kubernetes-adminkubernetesYou have an existing Nginx pod named nginx-pod . Perform the following steps: Expose the nginx-pod internally within the cl…

Gorm连接Mysql数据库及其语法

Gorm连接Mysql数据库及其语法 文章目录 Gorm连接Mysql数据库及其语法前期工作找到Gorm的github项目简单了解相关MySQL语法 启动数据库定义数据库模型注意点Gorm Model定义结构体标签(tag)支持的结构体标记&#xff08;Struct tags&#xff09;关联相关标记&#xff08;tags&…

重庆交通大学2024年蓝桥杯测试赛3题解(AK Java版)

A. 拼成长方体 题目描述: 有n个边长为1的立方体积木(这种立方体称为单位立方体),问可以拼成几种长方体。一个长方体,竖起来、平着放、侧着放,视为同一个长方体。 输入描述: 输入数据占一行,为一个正整数n,n≤1000。 输出描述: 输出每个长方体的长、宽、高,格式…

openGauss学习笔记-251 openGauss性能调优-使用Plan Hint进行调优-行数的Hint

文章目录 openGauss学习笔记-251 openGauss性能调优-使用Plan Hint进行调优-行数的Hint251.1 功能描述251.2 语法格式251.3 参数说明251.4 建议251.5 示例 openGauss学习笔记-251 openGauss性能调优-使用Plan Hint进行调优-行数的Hint 251.1 功能描述 指明中间结果集的大小&a…

Redis持久化策略和优缺点

首先来谈谈什么是持久化&#xff1f; 持久化就是将数据从内存保存到磁盘的过程&#xff0c;其目的就是为了防止数据丢失。 为什么要这样做&#xff1f;因为内存中的数据在重启服务器后就会丢失&#xff0c;而磁盘上的数据则不会&#xff0c;因此为了系统稳定&#xff0c;我们…

蓝桥杯刷题记录之黄金树

思路 需要注意的就是它的节点编号是从1开始的&#xff0c;Node的l和r是int类型&#xff0c;而不是Node类型&#xff0c;因为题目在给定l和r的时候&#xff0c;给的是下标而不是一个node对象&#xff0c;其余的就没有了&#xff0c;树的遍历这个贼简单 代码 import java.util…

学习AIGC大模型的步骤

学习大模型及相关技术&#xff0c;您可以按照以下步骤进行&#xff1a; 基础知识储备&#xff1a; •理解机器学习的基本概念&#xff0c;包括监督学习、无监督学习、强化学习等。 •掌握深度学习的基础理论&#xff0c;包括神经网络的工作原理、反向传播、激活函数等。 •学习…

产品经理面试自我介绍,这3大错误千万别犯!

金三银四求职季&#xff0c;你是不是也有面试的冲动&#xff01;但面试并不是头脑一热就能取得好结果&#xff0c;在此之前&#xff0c;必须得有周全的准备&#xff0c;才能应对好面试官的“连环问”&#xff01; 所以&#xff0c;今天这篇产品经理面试干货分享给大家~ 今天文…

最大的开源大模型:马斯克的Grok-1可供企业商用

由马斯克xAI团队研发的最大的开源大语言模型Grok-1&#xff0c;从头开始训练的总参数量为314B&#xff08;3140亿&#xff09;的混合专家&#xff08;MoE&#xff09;模型&#xff0c;其规模超过ChatGPT-3.5&#xff0c;目前Grok背后代码和权重架构已全部开放上线在GitHub。 下…

[简单粗暴]一文彻底搞懂Java泛型中的PECS原则(在坑里躺了多年终于爬出来了)

[简单粗暴]一文彻底搞懂Java泛型中的PECS原则(在坑里躺了多年终于爬出来了) 两种限定通配符 表示类型的上界&#xff0c;格式为&#xff1a;<&#xff1f; extends T>&#xff0c;即类型必须为T类型或者T子类表示类型的下界&#xff0c;格式为&#xff1a;<&#xf…

SqlServer服务启动报错10013

错误提示&#xff1a;MSSQLSERVER 服务启动异常不错10013 Windows不能在本地计算机启动SQLServer(MSSQLSERVER)。有关更多信 息&#xff0c;查阅系统事件日志。如果这是非Microsoft服务&#xff0c;请与服务厂商联系&#xff0c;并 参考特定服务错误代码10013。 解决 1、先禁用…

蓝桥杯 2023 省A 颜色平衡树

树上启发式合并是一个巧妙的方法。 dsu on tree&#xff0c;可以称为树上启发式合并&#xff0c;是一种巧妙的暴力。用一个全局数组存储结果&#xff0c;对于每棵子树&#xff0c;有以下操作&#xff1a; 先遍历轻儿子&#xff0c;处理完轻儿子后将数组清零&#xff08;要再…

网络七层模型之数据链路层:理解网络通信的架构(二)

&#x1f90d; 前端开发工程师、技术日更博主、已过CET6 &#x1f368; 阿珊和她的猫_CSDN博客专家、23年度博客之星前端领域TOP1 &#x1f560; 牛客高级专题作者、打造专栏《前端面试必备》 、《2024面试高频手撕题》 &#x1f35a; 蓝桥云课签约作者、上架课程《Vue.js 和 E…

Day14-集合(二)--什么是数据结构

什么是数据结构 计算机存储和组织数据的方式 数据结构概述 数据结构是计算机底层存储、组织数据的方式 是指数据相互之间是以什么方式排列在一起的 数据结构是为了更加方便管理和使用数据&#xff0c;需要结合具体的业务场景来进行选择 精心选择的数据结构可以带来更高的运…

Linux相关命令(1)

1、找出文件夹下包含 “aaa” 同时不包含 “bbb”的文件&#xff0c;然后把他们重新生成一下。要求只能用一行命令。 find ./ -type f -name "*aaa*" ! -name "*bbb*" -exec touch {} \;文件系统操作命令 df&#xff1a;列出文件系统的整体磁盘使用情况 …

2024/3/23 蓝桥杯

P1102 A-B 数对 二分 import java.util.Arrays; import java.util.Scanner;public class Main {public static void main(String[] args) {//A-BCScanner sc new Scanner(System.in);int n sc.nextInt();int C sc.nextInt();int[] res new int[n1];for(int i1;i<n;i) {…