问题描述
我正在尝试使用以下蚂蚁的过滤器链和替换令牌将一个资源包(.messages 文件)中的几个令牌替换为另一个资源包.
I am trying to replace few tokens from one resource bundle (.messages file) to another one using the below ant's filterchain and replacetoken.
<copy file="dev.properties" tofile="messages.properties">
<filterchain>
<replaceregex pattern="\$\{" replace="{" />
<filterreader classname="org.apache.tools.ant.filters.ReplaceTokens">
<param type="propertiesfile" value="properties.txt"/>
<param type="tokenchar" name="begintoken" value="{"/>
<param type="tokenchar" name="endtoken" value="}"/>
</filterreader>
</filterchain>
</copy>
目标运行良好,但没有复制任何内容.这是我的文件.
The target runs fine but nothing gets copied. Here are my files.
开发属性
server.name=myServerName
server.ip=127.0.0.1
messages.properties
messages.properties
SERVER_NAME="@server.name@"
SERVER_IP="@server.ip@"
请注意,messages.properties 是部署到服务器的内容.它具有所有环境通用的其他条目.我正在使用 Jenkins 将项目部署到不同的环境.我的计划是将此 ANT 目标/任务称为部署后步骤,将特定于环境/服务器的变量替换为 messages.properties 中的端口、名称等,然后使用 Jenkins 构建到应用服务器.
Please note that messages.properties is what gets deployed to the server. It has other entries which are common to all the environments. I am using Jenkins to deploy the projects to diff environments. My plan is call this ANT target/task as a post deployment step, replace the environment/server specific variables as port, name etc in messages.properties and then do the build to app server using Jenkins.
推荐答案
你可以试试这个:
You can try this:
<project name="MyProject" default="useregex" basedir=".">
<target name="useregex">
<property file="dev.properties"/>
<replace file="messages.properties" token="@server.name@" value="${server.name}" />
<replace file="messages.properties" token="@server.ip@" value="${server.ip}" />
</target>
</project>
这篇关于使用 Ant 脚本将令牌从一个文件替换为另一个文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!