12

每个pom.xml都有:

<groupId>com.vendor</groupId>
<artifactId>product</artifactId>
<version>1.0.13.0-dev</version>  <!-- THIS FIELD -->
<packaging>war</packaging>

version一块与应用程序捆绑在一起很有用,因此用户可以查看和报告它们。

但我不喜欢代码重复,并寻找一种方法来避免将带有版本信息的属性文件放入 VCS(Git/SVN),因为每次我增加版本时,我都必须提交到两个地方(pom.xmlversion.properties)。

我可以通过哪种方式在 Java 应用程序中以编程方式提供版本属性?pom.xml

4

4 回答 4

12

找到了一个使用maven-war-plugin更优雅的解决方案。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.3</version>
    <configuration>
       <webResources>
           <resource>
               <targetPath>WEB-INF/views/jsp</targetPath>
               <directory>${basedir}/src/main/webapp/WEB-INF/views/jsp</directory>
               <includes>
                  <include>footer.jsp</include>
               </includes>
               <filtering>true</filtering>
          </resource>
      </webResources>
  </configuration>
</plugin>

footer.jsp 然后有:

Application Version: ${project.version}
于 2013-05-27T15:32:22.440 回答
7

下面是我的个人制作解决方案。

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 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <version>1.0.13.0-dev</version>

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

base.jsp

<%@taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html>
<html>
<head></head>
<body>
   <a href='<c:url value="/"/>'>
     <spring:eval expression="@props.getProperty('version')"/>
   </a>
   <jsp:include page="${contentPage}" />
</body>
</html>

项目属性

version=${project.version}

应用上下文.xml

<bean id="props" class="org.springframework.beans.factory.config.PropertiesFactoryBean" autowire="byName" >
    <property name="location" value="classpath:proj.properties"/>
</bean>

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="classpath:proj.properties"/>
</bean>

要不就

<util:properties id="props" location="classpath:proj.properties"/>
于 2013-04-02T11:24:42.630 回答
6

看看Maven 资源插件。在您的version.properties(应该在resources文件夹中)中,定义类似version=${project.version}. 确保为插件打开过滤(所有在上面的链接中都有详细描述),你应该很高兴!

只需运行mvn resources:resources(或mvn compile)并检查生成的文件。

于 2013-04-01T10:33:30.913 回答
3

您可以简单地配置maven-war-plugin、maven-jar-plugin、maven-ear-plugin,如下所示:

 <plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-war-plugin</artifactId>
   <version>${maven-war-plugin.version}</version>
   <configuration>
     <archive>
       <addMavenDescriptor>true</addMavenDescriptor>
       <index>true</index>
       <manifest>
         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
         <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
       </manifest>
       <manifestEntries>
          <artifactId>${project.artifactId}</artifactId>
          <groupId>${project.groupId}</groupId>
          <version>${project.version}</version>
       </manifestEntries>
     </archive>
   </configuration>
 </plugin>

可以使用 jacabi从 manifest.mf 中读取信息。

于 2013-04-01T10:34:10.497 回答