在 tomcat 中部署 WAR

Deploying a WAR in tomcat

我已经在 archlinux 上安装了 tomcat,我尝试了 tomcat7 和 tomcat8。根据多个来源,包括官方文档,部署 WAR 文件就像将其放入 webapps 文件夹一样简单(在我的例子中是 /var/lib/tomcat7/webapps)。 WAR 文件被分解。我不知道的是如何访问我的网络应用程序。 localhost:8080 上有一个 tomcat 网页。我也试过 localhost:8080/name-of-the-war-file,但那只会让 HTTP 状态 404.

我用于测试的应用程序是 spring 引导的第一个指南: http://spring.io/guides/gs/spring-boot/

我修改了 Maven 构建文件 pom.xml 以在 运行 'mvn package':

时生成 WAR 文件
<?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-spring-boot</artifactId>
    <version>0.1.0</version>

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

    <packaging>war</packaging>

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

    <properties>
        <java.version>1.7</java.version>
    </properties>


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

</project>

除了修改 pom.xml 生成 WAR 文件外,还需要为 Web 应用程序配置 tomcat。这以前是通过 web.xml 文件完成的。如今,这可以从应用程序本身内部实现。 SpringBootServletInitializer 和 WebApplicationInitializer 是要寻找的线索。我发现获得全部 运行 的最简单方法是按以下方式修改 Application.java:

package hello;

import java.util.Arrays;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
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) {
        ApplicationContext ctx = SpringApplication.run(Application.class, args);

        System.out.println("Let's inspect the beans provided by Spring Boot:");

        String[] beanNames = ctx.getBeanDefinitionNames();
        Arrays.sort(beanNames);
        for (String beanName : beanNames) {
            System.out.println(beanName);
        }
    }
}

现在我可以在 http://localhost:8080/gs-spring-boot-0.1.0/ 上看到 "Greetings from Spring Boot!"(gs-spring-boot-0.1.0.war 是已部署 WAR 的名称文件)。