Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a java web application, managed by maven2. From time to time, we did some changes, and want to do new releases, of course with new version number. In the homepage (jsp), there is text like

<b>version:</b> 2.3.3...

Is it possible, every time I do a new release, I only change the <version/> in pom.xml, and version number in jsp can be automatically filled by this maven ${project.version}?

I tried maven profile, however it doesn't seem to work.

any ideas?

Thank you.

share|improve this question
btw, I used resources filtering and maven profile for other configuration files, e.g. those spring xmls, they are working. but for jsp, didn't work. – Kent Oct 6 '09 at 11:37

5 Answers

up vote 2 down vote accepted

It's maybe stupid but I'd use a .properties file like in this example instead of filtering directly the JSP.

share|improve this answer
Well, finally I did in this way. I added an entry in an existing property file and let mvn fill the version. and added an autostarting servlet. When the application context starts, the servlet read prop file and set a system property, say, "myVersion", so that jsp can retrieve by name. using maven resources plugin copy-resources goal works as well. However I also feel filtering jsp as resources not so clean. we used apache-tiles for layout, that is, in some jsps, there are already ${ ...} for tiles. It can be confusing if some ${} for maven added. Thank you guys for those comments. Kent – Kent Oct 6 '09 at 13:25

You can use project filtering to process the JSP as it is copied to the target location. If the JSP is specified with ${project.version}, and the containing folder is specified as a filter location the value should be substituted into the JSP as it is packaged.

For example, adding this to your POM enables filtering for src/main/resources:

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

Update: for war packaging, you may need to configure the war plugin to do its filtering. See the Filtering section of the war-plugin's documentation for more details and examples.

Essentially the process is the same, but it is defined below the war plugin, so you'd have something like this:

<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.0</version>
    <configuration>
      <webResources>
        <resource>
          <directory>src/main/resources</directory>
          <filtering>true</filtering>
        </resource>
      </webResources>
    </configuration>
  </plugin>
</plugins>
share|improve this answer
Glad to help. This works for any properties set at filter time – Rich Seller Oct 6 '09 at 11:27
sorry, just now I was checking the wrong file, and thought it was working. I added: <resource> <directory>src/main/webapp</directory> <filtering>true</filtering> </resource> and under src/main/resources, there is a test.jsp, which with ${project.version}. The version number is not assigned to ${...} after I run mvn clean package. Did I do something wrong? – Kent Oct 6 '09 at 11:34
In your comment you are filtering src/main/webapp but the JSP is in src/main/resources, are you sure the configuration matches up? – Rich Seller Oct 6 '09 at 12:09
Thanks for the comment. our project structure is: src/main/webapp/css, images... | src/main/webapp/WEB-INF/jsp/here are jsps | src/main/resource/property files, xml conf files etc. | src/main/java/java.packages.and.sourcecodes | now I found the problem is, if I look jsp pages as resources too, there are two resources directories, and two different target outputs for each. :src/main/resources/*.* -> target/../WEB-INF/classes/*.* | .../jsp/*.jsp ->target/../WEB-INF/jsp/*.jsp. maybe resource plugin 'copy-resources' can help? – Kent Oct 6 '09 at 12:33
I updated my answer with details for setting up filtering in the war plugin – Rich Seller Oct 6 '09 at 14:29

It make a while this post have been created, but I hope it would help. It will get properties generated from Maven :

<%@ page import="java.util.*"%>
<%
    java.io.InputStream inputStream = getServletContext().getResourceAsStream("/META-INF/maven/com.filhetallard.fam.ged/famdox/pom.properties");
    Properties mavenProperties= new Properties();
    mavenProperties.load(inputStream );
    String version = (String) mavenProperties.get("version");
    String name = (String) mavenProperties.get("artifactId");

%><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head> 
    <title>Application <%= name %> v<%= version %></title>

Unfortunately, there is some drawbacks :

  • you had to explicitely write groupId and artifactId in your code
  • if you deploy your web-app directly from target/ to your server, it won't find the file because this one is in maven-archiver directory, not in META-INF, before packaging.

Regards.

share|improve this answer

I use this plugin,

http://code.google.com/p/maven-substitute-plugin/

You can do something like this in Java,

   public final static String projectVersion = "@PROJECT_VERSION@";

and it's trivial to pass this value to JSP.

share|improve this answer
I tried this plugin and it was very poorly documented, buggy and seems unmaintained. – damd Sep 19 '12 at 14:58

In http://mojo.codehaus.org/jspc/jspc-maven-plugin/usage.html

It states this:
Non-WAR Projects

You can also use this plugin with non-war projects, for instance to validate JSPs. They will be compiled, but not included in your final artifact, and no web.xml file will be generated or modified.

If you want to just validate and compile your JSPs without actually including the generated code in your war project, you can also use set the includeInProject parameter to false.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.