Как отобразить номер сборки в spring веб-приложении

Мне нужно отобразить номер сборки на странице index.jsp

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<title>Title (build: BUILDNUMBER )
</head>

Номер сборки может быть предоставлен maven в файл *.properties. Каков наилучший способ прочитать файл *.properties и показать свойство с помощью Spring?

Ответ 1

Вы можете загрузить файл .properties в качестве источника сообщения локализации (используя ResourceBundlerMessageSource) и получить доступ к нему в JSP с помощью <spring:message> или <fmt:message>:

src/main/resources/buildInfo.properties:

buildNumber=${buildNumber}

где buildNumber раскрывается, как предлагает Роланд Шнайдер.

Конфигурация контекста:

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name = "basenames"><value>buildInfo</value></property>
    <!-- Or a comma separated list if you have multiple .properties files -->
</bean>

JSP файл:

Version: <spring:message code = "buildNumber" />

pom.xml:

<resources>
    <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
    </resource>
</resources>

Ответ 2

Вот как я это сделал, используя maven + jstl и оставляя Spring, поскольку он просто усложняет работу.

build.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<jsp:useBean id="dateValue" class="java.util.Date" />
<jsp:setProperty name="dateValue" property="time" value="${timestamp}" />
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Build info</title>
</head>
<body>
<table>
<tr>
    <td>Build time: </td>
    <td><fmt:formatDate value="${dateValue}" pattern="dd.MM.yyyy HH:mm:ss" /></td>
</tr>
<tr>
    <td>Build number: </td>
    <td>${buildNumber}</td>
</tr>
<tr>
    <td>Branch: </td>
    <td>${scmBranch}</td>
</tr>
</table>
</body>
</html>

Maven pom

<!-- plugin that sets build number as a maven property -->
<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>buildnumber-maven-plugin</artifactId>
  <version>1.1</version>
  <executions>
    <execution>
      <phase>validate</phase>
      <goals>
        <goal>create</goal>
      </goals>
      <configuration>
        <format>{0,date,yyDHHmm}</format>
        <items>
          <item>timestamp</item>
        </items>
      </configuration>
    </execution>
  </executions>
  <configuration>
    <format>{0,date,yyDHHmm}</format>
    <items>
      <item>timestamp</item>
    </items>
  </configuration>
</plugin>
<!-- war plugin conf to enable filtering for our file -->
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
        <webResources>
            <resource>
                <directory>src/main/webapp/</directory>
                <includes>
                    <include>build.jsp</include>
                </includes>
                <filtering>true</filtering>
                <targetPath>.</targetPath>
            </resource>
        </webResources>
    </configuration>
</plugin>

Более подробную информацию об использовании buildnumber-maven-plugin можно найти на странице .

Ответ 3

Предупреждение: фильтрация ресурсов не работает для файлов .jsp. Как отметил Паскаль Тивент (спасибо), index.jsp не является ресурсом, а принадлежит webapp.


Я не знаю точного ответа на ваш вопрос, но вы можете жестко закодировать файл buildnumber в файле index.jsp с помощью maven непосредственно, когда файл index.jsp будет скопирован в целевой каталог. Вам нужно будет только вставить переменную в index.jsp и настроить плагин maven-resource для включения фильтрации.

Пример:

index.jsp

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<title>Title (build: ${buildNumber} )
</head>

Конфигурация Maven (извлечение из pom.xml)

<build>

    <!-- Enable Resource Filtering -->
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
        </resource>
    </resources>

    <!-- Fetch the SVN build-number into var ${buildNumber} -->
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>buildnumber-maven-plugin</artifactId>
            <executions>
                <execution>
                    <phase>validate</phase>
                    <goals>
                        <goal>create</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <doCheck>false</doCheck>
                <doUpdate>false</doUpdate>
            </configuration>
        </plugin>
    </plugins>

</build>

Дополнительные сведения о фильтрации см. в Руководство по фильтрации Maven