Spring Servlet可在IntelliJ上运行,但不适用于tomcat

时间:2019-10-22 08:11:22

标签: java spring tomcat intellij-idea

我已经用SpringBoot编写了一个小型应用程序,并使用IntelliJ(已经从IntelliJ运行了该应用程序)对其进行了测试,并且一切正常。但是,当我尝试将战争部署到我的本地tomcat(或docker容器内的tomcat)上时,我收到了404 NotFound错误(在tomcat日志中没有错误);我认为启动应用程序时可能会遇到一些问题。这是我的主要课程:

@SpringBootApplication
public class DockerProxyMain extends SpringBootServletInitializer {

    public static void main(String[] args) {
        SpringApplication.run(DockerProxyMain.class, args);
    }
}

我只有一个控制器:

@RestController
public class DockerProxyController {
...
}

绒球

<packaging>war</packaging>

    <groupId>it.xxx</groupId>
    <artifactId>dockerProxy</artifactId>
    <version>1.0-SNAPSHOT</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.8.RELEASE</version>
    </parent>

    <properties>
        <java.version>11</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.3.6</version>
        </dependency>
    </dependencies>

    <build>
        <finalName>${artifactId}</finalName>

        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

我在项目内没有任何web.xml。有什么建议么?谢谢。

2 个答案:

答案 0 :(得分:0)

在主类中添加以下代码:

@Override   
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {    
   return application.sources(DockerProxyMain.class); 
}

答案 1 :(得分:0)

我解决了:问题是

<properties>
    <java.version>11</java.version>
</properties>

当我从pom中删除此部分时,spring应用程序开始正确响应;我认为我的tomcat实例没有该版本的Java。我仍然不明白为什么tomcat的日志中没有任何错误。