试图将简单的servlet部署到Tomcat服务器。选择Run Tomcat...
之后,我将重定向到带有一个单词-http://localhost:8080/hi_war_exploded/
的网页的$END$
。日志文件报告无错误。
我原本希望在hw
中看到带有我的应用程序的tc9\webapps
文件夹,但什么都没找到。
$END$
是什么意思?我的TomCat
服务器上的应用程序在哪里?如何将我的servlet放入TomCat服务器?
Servlet:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
// Extend HttpServlet class
public class hw extends HttpServlet {
private String message;
public void init() throws ServletException {
// Do required initialization
message = "Hello World";
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// Set response content type
response.setContentType("text/html");
// Actual logic goes here.
PrintWriter out = response.getWriter();
out.println("<h1>" + message + "</h1>");
}
public void destroy() {
// do nothing.
}
}
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<servlet>
<servlet-name>hw</servlet-name>
<servlet-class>hw</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>hw</servlet-name>
<url-pattern>/hw</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Hello</groupId>
<artifactId>hw</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>LATEST</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>LATEST</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
IntelliJ IDEA不会将webapp文件复制到TOMCAT\webapps
。
modifies Tomcat configuration中的CATALINA_BASE
,直接从其output directory部署工件,以避免复制文件,这可能会花费很多额外时间,尤其是对于大型项目。
[hi_war_exploded
是在Tomcat运行/调试配置Deployment tab中配置的上下文。
在此上下文的根中,您具有由IntelliJ IDEA在项目创建时生成的默认index.jsp
页面。
打开http://localhost:8080/hi_war_exploded/ URL时,Tomcat从应用程序的Web资源根目录提供index.jsp
。
$END$
是new JSP file template的一部分。在项目中创建新的JSP文件时,光标将放置在此位置。
当项目向导生成Web应用程序项目并从模板放置index.jsp
文件时,它不会展开$END$
宏,因此它出现在JSP file中。实际上是IntelliJ IDEA中的a known bug。
您的servlet可从http://localhost:8080/hi_war_exploded/hw URL获得。
要使其在http://localhost:8080/hw URL上可用,您需要将Application context更改为/
,如此屏幕截图所示:
尝试使用此tutorial为我工作。也可以在仍然可以使用8080的任何数字http://localhost:8082/上运行服务器]