编程语言
首页 > 编程语言> > java – 从pom获取应用程序版本

java – 从pom获取应用程序版本

作者:互联网

我有一个休息端点用于返回有关应用程序的信息(到目前为止只有应用程序版本)
但到目前为止,这些信息都是硬编码的,忘记更改它很容易.
我最好从pom或manifest文件中检索app版本.有没有带来这种功能的项目?

解决方法:

有一个名为Appinfo的惊人项目,请使用它并享受! (它有一个丑陋的页面,我知道 – 但它有效:)

AppInfo allows to automatically feed your application with a current version number, build date or build number.

同样优秀的Spring Boot Actuator提供了名为Info Endpoint的功能,可以将版本信息发布到Web或REST.

By default the Actuator adds an /info endpoint to the main server. It contains the commit and timestamp information from git.properties (if that file exists) and also any properties it finds in the environment with prefix “info”.

标签:java,spring,versioning,maven
来源: https://codeday.me/bug/20191004/1854503.html