我使用Spring Boot 1.2.4.RELEASE和gs-rest-service源文件。 我得到了:
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不会更改。
答案 0 :(得分:9)
刚试过这个,可以重现完全相同的行为。
听起来很傻,很可能你是在Java 1.7 JRE(推测)下运行你的外部tomcat,而你已经编译了1.8的代码(我们从你的pom中知道了这一点)。
奇怪的是,没有错误,应用程序出现在经理应用程序中,但是当您尝试访问它时会得到404.
确认这一点的一种方法是查看tomcat日志输出。你看到Spring Boot横幅吗?可能不是。
答案 1 :(得分:0)
在Tomcat上尝试localhost:8080/gs-rest-service/greeting
。 Tomcat通常会为每个WAR应用程序提供一个名称。此名称将用作URL的根部分。在大多数情况下,它是WAR文件的名称,在您的情况下为gs-rest-service
。