gpt4 book ai didi

java - 在jsp文件中添加buildNumber

转载 作者:太空宇宙 更新时间:2023-11-04 11:49:06 26 4
gpt4 key购买 nike

我试图获取 jsp 文件中的内部版本号,但由于某种原因,在我在 pom.xml 中添加了一些条目后,服务器无法正确部署应用程序。我看到了内部版本号,但应用程序现在无法正确部署。不确定这是否是为 build.jsp 文件添加过滤的正确位置。

我添加了这些字段

<directory>${project.basedir}/WebContent/jsps</directory>
<targetPath>jsps</targetPath>
<filtering>true</filtering>
<includes>
<include>**/build.jsp</include>
</includes>

pom

<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<warName>${project.name}${project.version}</warName>
<webResources>
<webResource>
<directory>WebContent</directory>
<excludes>
<!-- exclude>images/**</exclude> <exclude>scripts/**</exclude> <exclude>styles/**</exclude -->
<exclude>assembly.xml</exclude>
</excludes>
<directory>${project.basedir}/WebContent/jsps</directory>
<targetPath>jsps</targetPath>
<filtering>true</filtering>
<includes>
<include>**/build.jsp</include>
</includes>
</webResource>
</webResources>
</configuration>
</plugin>

最佳答案

所以,我在这里得到了解决方案。我只需要更新 Maven 项目,它就可以工作,并且 pom.xml 没有任何问题。

关于java - 在jsp文件中添加buildNumber,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42029307/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com