spring-boot生成打包信息
2021-09-12 22:45 作者:向上生長(zhǎng)之路 | 我要投稿
通過(guò)配置spring-boot-maven-plugin,可以實(shí)現(xiàn)生成一份maven打包信息文件,來(lái)方便查看線上jar包運(yùn)行的版本信息等
maven插件配置代碼如下
運(yùn)行maven打包指令
在打包好的的jar包中,我們就能看到META-INF下會(huì)生成一個(gè)build-info.properties文件!

可以打開(kāi)看到文件內(nèi)容

另外,可以通過(guò)訪問(wèn)spring-boot-starter-actuator提供的/actuator/info端點(diǎn),來(lái)查看到打包信息~

示例代碼:https://github.com/netbuffer/spring-boot-demo
標(biāo)簽: