Spring Boot War 文件部署在 Tomcat 上

Posted

技术标签:

【中文标题】Spring Boot War 文件部署在 Tomcat 上【英文标题】:Spring boot war file deploy on Tomcat 【发布时间】:2015-09-03 16:36:01 【问题描述】:

我使用带有 gs-rest-service 源文件的 Spring Boot 1.2.4.RELEASE。 我得到了:

127.0.0.1 - - [18/Jun/2015:09:59:25 +0300] "GET /gs-rest-service-0.1.0/ HTTP/1.1" 404 1021

Tomcat 日志中没有其他异常。

我已阅读相关问题,但我的测试没有运行。 Spring Boot War deployed to Tomcat

我已阅读howto-create-a-deployable-war 和Packaging executable jar and war files。

也许我错过了什么。

我的来源:

1.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>org.springframework</groupId>
    <artifactId>gs-rest-service</artifactId>
    <version>0.1.0</version>
    <packaging>war</packaging>

    <properties>        
        <start-class>hello.Application</start-class>
        <java.version>1.8</java.version>
    </properties>


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

    <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>        
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>spring-releases</id>
            <url>https://repo.spring.io/libs-release</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>spring-releases</id>
            <url>https://repo.spring.io/libs-release</url>
        </pluginRepository>
    </pluginRepositories>
</project>

2.Application.java

package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.web.SpringBootServletInitializer;

@SpringBootApplication
public class Application extends SpringBootServletInitializer 

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) 
        return application.sources(Application.class);
    

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

文件 Greeting.java 和 GreetingController.java 没有改变。

【问题讨论】:

您如何托管和测试您的 WAR? 我将war文件复制到webapp目录,我可以在tomcat管理器页面中看到我的应用程序。然后我尝试去localhost:8080/gs-rest-service-0.1.0/greeting的“问候页面”@ java -jar gs-rest-service-0.1.0.war 工作正常。 我使用链接 localhost:8080/greeting 【参考方案1】:

刚刚在这里尝试过,并且可以重现完全相同的行为。

听起来很傻,很可能您在 Java 1.7 JRE 下运行外部 tomcat(推测),同时针对 1.8 编译了代码(我们从您的 pom 中知道这一点)。

奇怪的是,没有错误,并且该应用出现在管理器应用中,但是当您尝试访问它时却收到 404。

确认这一点的一种方法是查看您的 tomcat 日志输出。你看到 Spring Boot 横幅了吗?应该不会吧。

【讨论】:

嗨,我使用 sudo update-java-alternatives -s java-1.8.0-openjdk-amd64 将 java 版本设置为 java 8。之后我重新启动了tomcat服务器。问题仍未解决。我们怎样才能在这里继续使用 Java 8? 嗨,我不得不将 /etc/default/tomcat7 中的 JAVA_HOME 属性更改为 Java 8。之后它开始工作。您上面关于错误 Java 版本的评论有很大帮助。谢谢。 @ci_ 我已经检查了使用我的 maven 构建项目的 java 版本和 tomcat 使用的 java 版本,两者都是 java 1.8。我在日志中看到了 Spring Boot 横幅,但无法弄清楚出了什么问题。谢谢【参考方案2】:

在您的 Tomcat 上尝试localhost:8080/gs-rest-service/greeting。 Tomcat 通常为它托管的每个 WAR 应用程序命名。此名称将用作 URL 的根部分。在大多数情况下,它是 WAR 文件的名称,在您的情况下为 gs-rest-service

【讨论】:

我之前指出过。我将战争文件复制到 webapp 目录,我可以在 tomcat 管理器页面中看到我的应用程序。然后我尝试去 localhost:8080/gs-rest-service-0.1.0/greeting 的“问候页面”。此链接来自 tomcat 管理器页面,并在末尾添加问候语。 你试过 localhost:8080/gs-rest-service/greeting 吗? 是的。我尝试访问此链接。 127.0.0.1 - - [18/Jun/2015:11:12:58 +0300] "GET /gs-rest-service/greeting HTTP/1.1" 404 - 127.0.0.1 - - [18/Jun/2015:11:14:29 +0300] "GET /gs-rest-service-0.1.0/greeting HTTP/1.1" 404 1045跨度>

以上是关于Spring Boot War 文件部署在 Tomcat 上的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot War 文件部署在 Tomcat 上

如何将 Spring Boot 和 Angular 应用程序部署为单个 war 文件?

如何在 Spring Boot 应用程序中启用 HTTPS,在 Tomcat 中部署为 WAR 文件?

在tomcat上部署多个Spring Boot应用程序时如何指定logging.config

spring boot --部署war到tomcat中

将 WAR 部署到 Tomcat(Spring Boot + Angular)