DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations

Trending

  • How To Backup and Restore a PostgreSQL Database
  • RBAC With API Gateway and Open Policy Agent (OPA)
  • Developers Are Scaling Faster Than Ever: Here’s How Security Can Keep Up
  • Multi-Stream Joins With SQL
  1. DZone
  2. Coding
  3. Java
  4. How to Display Maven Project Version in Your Webapp Overview

How to Display Maven Project Version in Your Webapp Overview

Vineet Manohar user avatar by
Vineet Manohar
·
Sep. 23, 10 · Interview
Like (0)
Save
Tweet
Share
34.62K Views

Join the DZone community and get the full member experience.

Join For Free

sometimes it is useful to display the version of your web application, typically in the footer area of the web page. by displaying the version information, one can quickly determine which version of the app is running or users can use it for error reporting purposes. displaying the version is also useful when there are frequent automated releases using the maven release plugin and it is hard to track which version is actually deployed on a server. here’s an illustration of how version can be displayed in the footer.

project version shown in footer

this article describes how to display the version of your maven project in your web application.

step 1: create a view file to display the version

first we will create a view file which will display the version. the view file could be a jsp, html, xhtml, a facelet or any format depending on your stack. in this example, we will create a jsp file which will print the version somewhere in the page. however, instead of the hardcoding an actual version, we put a special token ‘project_version’. we don’t want to hard code the version information as it will change from release to release. the special token will be replaced with actual maven project version when the app is packaged.

create the following jsp.

src/main/webapp/version.jsp 

here’s a simple file which displays the version information.

 <html>
  <body>project version is <i>project_version</i></body>
</html>

step 2: add snippet to pom.xml

the maven replacer plugin is a simple and useful plugin which can replaces tokens in file of your choice. add the following snippet of code to your pom.xml.

<project>
 <build>
  <plugins>
   <!-- replace version in file -->
   <plugin>
    <groupid>com.google.code.maven-replacer-plugin</groupid>
    <artifactid>maven-replacer-plugin</artifactid>
    <version>1.3.2</version>
    <executions>
     <execution>
      <!-- the replace should happen before the app is packaged -->
      <phase>prepare-package</phase>
      <goals>
       <goal>replace</goal>
      </goals>
     </execution>
    </executions>

    <configuration>
     <includes>
      <!-- replace the token in this file -->
      <include>target/myproject/version.jsp</include>
     </includes>
     <regex>false</regex>
     <!-- the name of the token to replace -->
     <token>project_version</token>
     <!-- replace it with the maven project version -->
     <value>${project.version}</value>
    </configuration>
   </plugin>
  </plugins>
 </build>
</project>

to test the above setup, you can run the following command:

mvn prepare-package

navigate to the following file.

target/myproject/version.jsp

the contents of this file will look something like this (assuming that your project version is 1.0-snapshot):

<html>
  <body>project version is <i><strong>1.0-snapshot</strong></i></body>
</html>

when your application ships, the version.jsp file will always have the correct version. you can see the version by invoking the version.jsp page.

http://localhost:8080/myproject/version.jsp 

note:

  • your view file does not have to be a jsp, it can be any a view file suitable to your stack. it could be part of your footer which could be included at the bottom in each page.
  • the special token can be changed from project_version to another value of your choice, just change it in the view file as well as the pom.xml
  • instead of having the version contained in a view file, you could have the version in a properties file or a message bundle and then display a message from the message bundle on the view

references

  • maven replace plugin on google code

from http://www.vineetmanohar.com/2010/09/how-to-display-maven-project-version-in-your-webapp

Apache Maven

Opinions expressed by DZone contributors are their own.

Trending

  • How To Backup and Restore a PostgreSQL Database
  • RBAC With API Gateway and Open Policy Agent (OPA)
  • Developers Are Scaling Faster Than Ever: Here’s How Security Can Keep Up
  • Multi-Stream Joins With SQL

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: