gpt4 book ai didi

spring-boot - 使用 maven 作为构建工具时,通过/actuator/info 端点提供 Spring Boot git 和构建信息

转载 作者:行者123 更新时间:2023-12-04 00:22:32 24 4
gpt4 key购买 nike

我正在使用这个 Spring Boot 指南 Building a RESTful Web Service with Spring Boot Actuator 。访问端点 /actuator/info 时,我收到空的 json 响应 {}

执行器 api documentation 提到了包含构建信息(如工件、组、名称、版本)和 git 信息(如分支、提交等)的响应结构。

如何启用记录的响应结构。我想使用 maven 作为构建工具(不是 gradle)。这是我的 pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>actuator-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>actuator-service</name>
<description>Demo project for Spring Boot</description>

<properties>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

最佳答案

经过进一步研究,我在文档中找到了答案:

Git 信息

将此添加到 pom.xml 的 plugins 部分。 maven 将在构建 ./target/classes/git.properties 期间生成此文件。 Spring 将读取此文件的内容并将其包含在 /actuator/info 的响应中

<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>

Git Commit InformationGenerate Git Information

构建信息

向 spring-boot-maven 插件添加执行目标。这将生成文件 ./target/classes/META-INF/build-info.properties 。 Spring 将读取此文件的内容并将其包含在 /actuator/info 的响应中

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.7.RELEASE</version>
<executions>
<execution>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>

资料来源: Build InformationGenerate Build Information

关于spring-boot - 使用 maven 作为构建工具时,通过/actuator/info 端点提供 Spring Boot git 和构建信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59556405/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com