我正在处理一个ant脚本,我的ant目标解压缩war文件,然后重命名/替换文件并再次压缩war文件。所以我的war文件的结构是WEB-INF文件夹,它有web-muqmreports.xml和web.xml文件。
我的目标解压缩war文件,然后制作web-muqmreports.xml的副本 使用名称web.xml,并将其放回war文件,然后将其拉链,但问题是我在WEB-INF文件夹中已经有一个web.xml文件,所以当目标将重命名的web.xml文件放入在WEB-INF文件夹中,它不会覆盖现有的web.xml文件。
我的目标工作正常。我检查了它没有用web.xml重命名文件名。我用web_tt.xml重命名它,之后我可以看到战争中的文件。
有人可以告诉我为什么它不会覆盖现有的web.xml文件吗?
有没有什么办法可以在下面的目标中删除zip之前的现有web.xml文件?
<target name="env.replace.webxml">
<echo message="Replacing app web.xml"/>
<move todir="${deploy.war.dir}">
<fileset dir="${deploy.war.dir}" includes="*.war" />
<regexpmapper from=".*\.war" to="${deploy.appname}.war" />
</move>
<delete dir="WEB-INF"/>
<unzip src="${deploy.war.dir}/${deploy.appname}.war" dest=".">
<patternset>
<include name="WEB-INF/${deploy.use.web.xml}"/>
</patternset>
<globmapper from="WEB-INF/${deploy.use.web.xml}" to="WEB-INF/web.xml"/>
</unzip>
<zip destfile="${deploy.war.dir}/${deploy.appname}.war" basedir="." includes="WEB-INF/web.xml" update="true"/>
</target>
答案 0 :(得分:0)
我解决了这个问题,我在蚂蚁目标中添加了一个步骤
<target name="env.replace.webxml">
<echo message="Replacing app web.xml"/>
<move todir="${deploy.war.dir}">
<fileset dir="${deploy.war.dir}" includes="*.war" />
<regexpmapper from=".*\.war" to="${deploy.appname}.war" />
</move>
<delete dir="WEB-INF"/>
<unzip src="${deploy.war.dir}/${deploy.appname}.war" dest=".">
<patternset>
<include name="WEB-INF/${deploy.use.web.xml}"/>
</patternset>
<globmapper from="WEB-INF/${deploy.use.web.xml}" to="WEB-INF/web.xml"/>
</unzip>
**<tstamp> <format property="touch.time" pattern="MM/dd/yyyy hh:mm aa"/> </tstamp>
<touch datetime="${touch.time}">
<fileset dir="." />
</touch>**
<zip destfile="${deploy.war.dir}/${deploy.appname}.war" basedir="." includes="WEB-INF/web.xml" update="true"/>
</target>
答案 1 :(得分:0)
我有类似的问题。我有自定义文件,包括web.xml,需要在已经建立的战争中对其进行更新。至关重要的是触摸要放入战争中的文件夹中的文件。下面的示例:
<form id="form" enctype="multipart/form-data">
{{csrf_field()}}
<div class="form-group" >
<label for="title">Title</label>
<input type="text" name="title" >
</div>
<div class="form-group">
<label for="description">Description</label>
<input type="text" name="description">
</div>
<input type='button' value="Submit" id="btn"/>
</form>