I'm using the maven-war-plugin to filter some resources in WEB-INF. Mostly stuff static stuff like:
var url = ${contextRoot}/save.json;
or
<link href="static/css/layout-${buildNumber}.css"/>
Everything works fantastically. My issue is that it has created a development nightmare. I typically hot deploy to a local tomcat and my IDE handles copying changes (on save) to the target directory. But when that happens I end up with a literal ${property} in my file instead of what it was originally replaced with by the war plugin. I would prefer to test view/static resource changes on-the-fly instead of having to redeploy for each change.
I've messed around with the tomcat plugin to run it but when I used that the resource filtering doesn't happen unless I use it to deploy, in which case I lose the hot-swap capabilities.
I'm using spring and I would be fine with using themes, filtering the theme properties, and then using that to replace values in my view. But what about the js/css/other static stuff?
Is there a way to have the war plugin "filter on-the-fly"? Can anyone recommend a better way accomplish what I'm trying to do? I feel like I've been looking at it for too long and have some tunnel vision on the matter.
propertiesdefined? Also, did you trytomcat:run-waryou'll loose hot-swap, may be. – Nishant Jan 23 '11 at 16:42tomcat:run-warand I did lose hot-swap (technically, hot-swap still worked but I ended up back in my original boat, the properties weren't replaced). – Josh Johnson Jan 23 '11 at 17:55<activeByDefault>true</activeByDefault>should work. – Nishant Jan 23 '11 at 18:10tomcat:run-wareverything works fine.${contextRoot}is replaced with/myappand everything runs happily. The problem occurs when I modify that file and it reverts back to${contextRoot}. Again, everything works fine if I'm just running once or deploying. But if I want to actively work on the project (i.e. modify a file then refresh the page to see the results), the filtering doesn't work. Which makes sense. I just want to know if there is a way around it. – Josh Johnson Jan 23 '11 at 18:39