tags:

views:

511

answers:

1

Example input:

SERVER_NAME=server1
PROFILE_NAME=profile1
...

Example output:

SERVER_NAME=server3
PROFILE_NAME=profile3
...

This file will use in applicationContext.xml. I've tried

<copy file="${web.dir}/jexamples.css_tpl"
         tofile="${web.dir}/jexamples.css" >
    <filterchain>
       <replacetokens>
            <token key="SERVER_NAME" value="server2"/>
            <token key="PROFILE_NAME" value="profi"/>

        </replacetokens>
    </filterchain>
</copy>

but it doesn't work.

+1  A: 

Your filterchain is ok, but your source file should look like this:

SERVER_NAME=@SERVER_NAME@
PROFILE_NAME=@PROFILE_NAME@

This code (as provided by you)

<copy file="${web.dir}/jexamples.css_tpl"
         tofile="${web.dir}/jexamples.css" >
    <filterchain>
       <replacetokens>
            <token key="SERVER_NAME" value="server2"/>
            <token key="PROFILE_NAME" value="profi"/>
        </replacetokens>
    </filterchain>
</copy>

replaces the tokens and gives you

SERVER_NAME=server2
PROFILE_NAME=profi

If you want to keep your original file as you have it now, one way would be to use replaceregex:

<filterchain>
  <tokenfilter>
    <replaceregex pattern="^[ \t]*SERVER_NAME[ \t]*=.*$"
                  replace="SERVER_NAME=server2"/>
    <replaceregex pattern="^[ \t]*PROFILE_NAME[ \t]*=.*$"
                  replace="PROFILE_NAME=profi"/>
  </tokenfilter>
</filterchain>

This would replace every line starting with SERVER_NAME= by SERVER_NAME=server2 (same for PROFILE_NAME=). This will return get you the output you described.

[ \t]* is to ignore whitespace.

Peter Lang
is it possible to change property value without tokens@@ ?
Andrew
Yes, see my updated answer.
Peter Lang