使用IntelliJ IDEA将servlet部署到本地Tomcat服务器

时间:2019-02-15 16:01:28

标签: java tomcat servlets intellij-idea

尝试将简单的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>

1 个答案:

答案 0 :(得分:1)

IntelliJ IDEA不会将webapp文件复制到TOMCAT\webapps

CATALINA_BASE中的modifies Tomcat configuration并直接从其output directory部署工件以避免复制文件,这可能会花费很多额外时间,尤其是对于大型项目。

hi_war_exploded是在Tomcat Run / Debug配置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上可用,您需要将应用程序上下文更改为/,如以下屏幕截图所示:

Deployment context