gpt4 book ai didi

java - 带有 Maven 的 Tomcat7,未应用 contextReloadable

转载 作者:行者123 更新时间:2023-11-28 23:12:05 25 4
gpt4 key购买 nike

在我的 pom.xml 中,我有以下配置文件:

      <profile>
<id>local</id>
<build>
<finalName>webProject</finalName>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>/</path>
<contextReloadable>true</contextReloadable>
</configuration>
</plugin>
</plugins>
</build>
</profile>

我正在使用命令行中的以下命令运行 tomcat:

mvn clean tomcat7:run -Plocal

一切都很好,除了当我编辑和保存我的 java 文件(使用 intellij)时没有任何反应。该应用程序根本不会重新加载。我试过等待和刷新,但没有任何效果。

有什么想法吗?

这是我的web.xml

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<display-name>Archetype Created Web Application</display-name>

<servlet>
<servlet-name>webProject</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring_config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>webProject</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring_config.xml</param-value>
</context-param>

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

最佳答案

嗯,这是一个简单的修复。如果有人有同样的问题,我会分享它。问题是 Intellij 没有编译 java 文件。

为了让它工作,我必须去 Build->Compile... (ctrl+Shift+F9)

或者,您可以转到 File ->Settings->Compiler->make project automatically,Intellij 会自动完成。

关于java - 带有 Maven 的 Tomcat7,未应用 contextReloadable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56623960/

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