我正在尝试调试将现有的spring-boot应用程序部署为.war文件的问题,即使在最小的情况下也无法使其正常工作。
特别是我:
生成的战争文件似乎部署在具有以下上下文的Jetty(9.4.11.v20180605)实例中...
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<Set name="contextPath">/some-context-path</Set>
<Set name="war">/some-path/gs-spring-boot-0.1.0.war</Set>
</Configure>
但是,在浏览器中访问应用程序会提供META_INF
,WEB-INF
和org
的目录列表,而不是预期的“ Spring Boot的问候!”。
我不公平地假设,我的问题不是码头设置,因为它对于许多其他.war文件都可以正常工作,但是也许我错过了我需要在码头上设置的东西才能使它工作带有spring-boot正在生成的.war文件类型。
因此,总而言之,要生成可在现有容器中部署的spring-boot .war文件,我缺少什么必要的步骤?
下面显示了我按照上述步骤操作后在项目中得到的三个文件,以供参考。
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-spring-boot</artifactId>
<version>0.1.0</version>
<packaging>war</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.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>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
src / main / java / hello / HelloController.java
package hello;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
@RestController
public class HelloController {
@RequestMapping("/")
public String index() {
return "Greetings from Spring Boot!";
}
}
src / main / java / hello / Application.java
package hello;
import java.util.Arrays;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
@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);
}
@Bean
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
return 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);
}
};
}
}
答案 0 :(得分:0)
我认为我的问题是我正在使用的嵌入式码头不包括org.eclipse.jetty.annotations.AnnotationConfiguration处理器。
在码头服务器对象的设置中添加一些基于https://www.eclipse.org/jetty/documentation/9.4.x/using-annotations-embedded.html的代码,看来它至少在这种最小的情况下可以正常工作。