gpt4 book ai didi

java - 如何在 openshift.com 上部署 Spring MVC 项目

转载 作者:搜寻专家 更新时间:2023-10-31 20:01:29 25 4
gpt4 key购买 nike

我想部署一个简单的 Spring MVC 应用程序来打开类次我用谷歌搜索并找到了 spring-mvc-3-on-jboss但是项目结构不同我有基本的 Spring MVC 项目结构是
enter image description here

那是在 this repo ,在 openshift.com 我创建了应用程序并配置为:

但是当我转到我的应用程序 url 时,我看不到我的 home.jsp 文件作为欢迎文件,我只看到默认/传统的欢迎页面。
关于如何配置项目以正常工作的任何建议?

最佳答案

您的 pom.xml 存在一个主要问题,我认为这会导致您的应用无法在 openshift.com 上运行。您应该将以下行添加到您的 pom.xml

<profiles>
<profile>
<!-- When built in OpenShift the 'openshift' profile will be used when
invoking mvn. -->
<!-- Use this profile for any OpenShift specific customization your app
will need. -->
<!-- By default that is to put the resulting archive into the 'webapps'
folder. -->
<!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
<id>openshift</id>
<build>
<finalName>yourAppName</finalName>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<outputDirectory>webapps</outputDirectory>
<warName>ROOT</warName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

我还没有使用 JBoss Application Server 测试此代码,因此请将您的服务器更改为 Apache Tomcat 7。这对我来说是正确的。

关于java - 如何在 openshift.com 上部署 Spring MVC 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30954158/

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