git验证线上的版本是否符合预期
作者:Linyb极客之路 时间:2023-03-04 16:24:09
git-commit-id-maven-plugin插件,会根据当前分支的版本号生成一个git.properties文件。
git.properties内容形如下
git.branch=master
git.build.host=xxx
git.build.time=2022-03-01T20\:33\:43+0800
git.build.user.email=aaa@qq.com
git.build.user.name=aaa
git.build.version=1.0-SNAPSHOT
git.closest.tag.commit.count=
git.closest.tag.name=
git.commit.id=6dab4430864e3e4a9fc1ba6f6b93f278100d4e2e
git.commit.id.abbrev=6dab443
git.commit.id.describe=6dab443-dirty
git.commit.id.describe-short=6dab443-dirty
git.commit.message.full=Add README.md
git.commit.message.short=Add README.md
git.commit.time=2022-03-01T16\:24\:48+0800
git.commit.user.email=aa@example
git.commit.user.name=aa
git.dirty=true
git.remote.origin.url=http://hello
git.tags=
git.total.commit.count=1
如何使用
本文以springboot项目为例,springboot项目的parent pom里面已经内嵌git-commit-id-maven-plugin插件管理依赖。如下
<pluginManagement>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
</configuration>
</plugin>
</plugins>
</pluginManagement>
项目中做如下配置
1、在我们的项目中显式引入git-commit-id-plugin插件
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>
</plugins>
</build>
2、通过和actuator集成,显示git信息
a、在项目中引入actuator GAV
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
b、浏览器访问http://ip : port/actuator/info
如果觉得上面的信息不够多,我们可以通过自定义端点或者自己写一个controller把信息展示出来
详细的信息可以通过org.springframework.boot.info.GitProperties展示
本示例以自定义端点为例。示例如下
@Endpoint(id = "git")
@Component
public class GitEndpoint {
@Autowired(required = false)
private GitProperties gitProperties;
@ReadOperation
public Object info() throws IOException {
if(ObjectUtils.isEmpty(gitProperties)){
return new HashMap<>();
}
return gitProperties;
}
}
在application.yml中开放自定义端点
management:
endpoints:
web:
exposure:
include: 'git'
浏览器访问http://ip : port/actuator/git
如果仍然觉得上述的信息还是不够详细,那可以通过解析git.properties文件显示。示例
@Endpoint(id = "gitDetail")
@Slf4j
@Component
public class GitDetailEndPoint {
@ReadOperation
public Object detail() throws IOException {
Properties props = null;
try {
props = PropertiesLoaderUtils.loadAllProperties("git.properties");
return props;
} catch (IOException e) {
log.error("git.properties not found");
} finally {
}
return new HashMap<>();
}
}
在application.yml中开放自定义端点
management:
endpoints:
web:
exposure:
include: 'gitDetail'
浏览器访问http://ip:port/actuator/gitDetail
来源:http://166z.cn/86tP
标签:git,验证,线上版本
0
投稿
猜你喜欢
Go map发生内存泄漏解决方法
2024-05-05 09:29:52
css分页放大镜效果
2008-11-02 15:35:00
Python基于read(size)方法读取超大文件
2022-06-06 12:27:15
SQL Server自定义异常raiserror使用示例
2024-01-22 10:41:08
Python字符串str和json格式相互转换
2023-01-21 03:26:25
golang替换无法显示的特殊字符(\\u0000, \\000, ^@)
2024-04-25 13:17:17
在Centos 5.5 上编译安装mysql 5.5.9
2024-01-19 02:56:39
bootstrapValidator表单验证插件学习
2024-04-10 13:53:34
Python操作MySQL数据库实例详解【安装、连接、增删改查等】
2024-01-21 15:55:47
python中的mock接口开发示例详解
2023-03-05 00:53:29
Python中FTP服务与SSH登录暴力破解的实现
2022-12-14 13:25:43
pandas数据分组和聚合操作方法
2023-09-07 05:15:44
python数据分析之聚类分析(cluster analysis)
2022-12-28 08:24:02
Python中operator模块的操作符使用示例总结
2023-01-31 12:32:14
2008农历新年各大网站Logo秀
2008-02-11 16:33:00
关于《回访确认》的几个问题
2009-08-24 12:43:00
PHP session反序列化漏洞超详细讲解
2023-05-25 08:54:18
IE6 iframe 横向滚动条问题
2009-01-18 13:31:00
使用pyshp包进行shapefile文件修改的例子
2023-07-01 08:28:35
模型训练时GPU利用率太低的原因及解决
2021-02-05 22:22:07