app版本控制java后端接口版本管理

ops/2025/1/22 12:16:55/

java_api_version__java_0">java api version 版本控制 java接口版本管理

1 自定义 AppVersionHandleMapping
java">自定义AppVersionHandleMapping实现RequestMappingHandlerMapping里面的方法
public class AppVersionHandleMapping extends RequestMappingHandlerMapping
{@Overrideprotected RequestCondition<?> getCustomTypeCondition(Class<?> handlerType){AppVersion annotation = handlerType.getAnnotation(AppVersion.class);return annotation == null ? null : new AppVersionCondition(new VersionItem(annotation.value()));}@Overrideprotected RequestCondition<?> getCustomMethodCondition(Method method){AppVersion annotation = method.getAnnotation(AppVersion.class);return annotation == null ? null : new AppVersionCondition(new VersionItem(annotation.value()));}
}
2 自定义注解
java">@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface AppVersion
{String value() default "1.0.0";
}
3 实现RequestCondition里面的方法
java">@Data
public class AppVersionCondition implements RequestCondition<AppVersionCondition> {private VersionItem versionItem;public AppVersionCondition(VersionItem versionItem) {this.versionItem = versionItem;}@Overridepublic AppVersionCondition combine(AppVersionCondition other) {// 选择大版本return versionItem.compareTo(other.getVersionItem()) >= 0 ? new AppVersionCondition(this.getVersionItem()) : new AppVersionCondition(other.getVersionItem());}@Overridepublic AppVersionCondition getMatchingCondition(HttpServletRequest request) {String appVersion = RequestUtil.getAppVersion(request);VersionItem item = new VersionItem(appVersion);// 获取所有小于等于版本的接口if (item.compareTo(this.versionItem) >= 0)return this;return null;}@Overridepublic int compareTo(AppVersionCondition other, HttpServletRequest request) {// 获取最大版本对应的接口return other.getVersionItem().compareTo(this.versionItem);}
4 最后把自定义的AppVersionHandleMapping注入MVC管理
java">@Configuration
public class WebConfig implements WebMvcConfigurer, WebMvcRegistrations {@Overridepublic RequestMappingHandlerMapping getRequestMappingHandlerMapping() {return new AppVersionHandleMapping();}
5 版本比对工具
java">@Data
public class VersionItem implements Comparable<VersionItem> {private String appVersion;public VersionItem(String appVersion) {// 截取前三位String[] split = appVersion.split("\\.");if (split.length > 3)appVersion = split[0] + "." + split[1] + "." + split[2];this.appVersion = appVersion;}@Overridepublic int compareTo(@NotNull VersionItem o) {return compareVersion(o.getAppVersion());}/*** 判断版本** @param version 版本*/private int compareVersion(String version) {String[] version1 = appVersion.split("\\.");String[] version2 = version.split("\\.");int i1 = 0;int i2 = 0;int n1 = version1.length;int n2 = version2.length;for (int i = 0; i < Math.max(n1, n2); i++) {i1 = i < n1 ? Integer.parseInt(version1[i]) : 0;i2 = i < n2 ? Integer.parseInt(version2[i]) : 0;if (i1 != i2)return Integer.compare(i1, i2);}return 0;}
6 参考

https://blog.51cto.com/u_13521/9789790


http://www.ppmy.cn/ops/152185.html

相关文章

R语言的图形用户界面

R语言的图形用户界面简介 随着数据科学和统计分析的快速发展&#xff0c;R语言作为一种强大的统计分析工具&#xff0c;受到了越来越多研究人员和数据科学家的青睐。R语言不仅具有强大的计算能力&#xff0c;还拥有丰富的图形绘制功能&#xff0c;为数据可视化提供了便利。为了…

mapbox js本地化部署

移除mapbox-gl.js的token检测&#xff0c;使用本地sprite和glyphs&#xff0c;并支持相对路径而不是网络地址url 版本 vue3&#xff08;v3.5.13&#xff09; vite&#xff08;v6.0.1&#xff09;mapbox-gl.js&#xff08;v3.9.3&#xff09; 参考 https://github.com/HuHongYon…

2025年1月21日刷题记录

1.leetcode1768题目 链接&#xff1a;1768. 交替合并字符串 - 力扣&#xff08;LeetCode&#xff09; 代码&#xff1a; class Solution { public:string mergeAlternately(string word1, string word2) {string word3;int a word1.size(), b word2.size();int i 0, j 0…

Visual Studio2019调试DLL

1、编写好DLL代码之后&#xff0c;对DLL项目的属性进行设置&#xff0c;选择待注入的DLL&#xff0c;如下图所示 2、生成DLL文件 3、将DLL设置为启动项目之后&#xff0c;按F5启动调试。弹出选择注入的exe的界面之后&#xff0c;使用代码注入器注入步骤2中生成的dll&#xff…

从零搭建一套远程手机的桌面操控和文件传输的小工具

从零搭建一套远程手机的桌面操控和文件传输的小工具 --ADB连接专题 一、前言 前面的篇章中&#xff0c;我们确定了通过基于TCP连接的ADB控制远程手机的操作思路。本篇中我们将进行实际的ADB桥接的具体链路搭建工作&#xff0c;从原理和实际部署和操作层面上&#xff0c;从零…

算法-键盘行

力扣题目&#xff1a;500. 键盘行 - 力扣&#xff08;LeetCode&#xff09; 给你一个字符串数组 words &#xff0c;只返回可以使用在 美式键盘 同一行的字母打印出来的单词。键盘如下图所示。 请注意&#xff0c;字符串 不区分大小写&#xff0c;相同字母的大小写形式都被视…

【Unity】使用Canvas Group改变UI的透明度

目录 一、前言二、Canvas Group三、结合DOTween达到画面淡进的效果 一、前言 在平时开发中&#xff0c;可以通过控制材质、Color改变UI透明度&#xff0c;除此之外还可以CanvasGroup组件来控制透明度。 二、Canvas Group 官方文档链接&#x1f449;&#x1f449; 点击进入 …

AI赋能零售:ScriptEcho如何提升效率,优化用户体验

零售业正经历着前所未有的变革。库存管理难题、日益增长的个性化服务需求以及瞬息万变的市场环境&#xff0c;都给零售商带来了巨大的挑战。然而&#xff0c;人工智能技术的快速发展为零售业带来了新的机遇&#xff0c;为解决这些挑战提供了强有力的工具。其中&#xff0c;AI写…