I am using RAD7.5 for the project development. My web.xml file looks like this:
<context-param>
<param-name>config.file</param-name>
<param-value>@project.config.location@</param-value>
</context-param>
So basically @project.config.location@ is retrieved from a properties file(config.properties) during the ant-build process using the filterset code as shown below:
<copy todir="${project.build.dir}">
<fileset dir="${web.project.webcontent.dir}" excludes="**/classes/**" />
<filterset>
<filtersfile file="${web.project.src.dir}/filters/${file.filter.name}" />
</filterset>
</copy>
So my problem is how to configure RAD7.5 so that while deploying the app locally(right click on the project EAR -> run on server) will replace these filters. I have been trying to find the solution but could not find anything on the web yet.Any suggestions?