Spring 引导不会在 Tomcat 实例中启动



我有一个只包含一些计划任务的小型Web应用程序。当我在 Tomcat 实例上部署此应用程序时,没有任何反应。不生成日志,调度不起作用。我找到该应用程序的唯一日志是:

31-Aug-2018 11:05:06.120 INFO [http-nio-80-exec-107] org.apache.catalina.core.ApplicationContext.log 1 Spring WebApplicationInitializers detected on classpath

我对应用程序类有以下注释(主要在其中(:

@SpringBootApplication
@EnableConfigurationProperties(InfluxProperties.class)
@EnableScheduling

计划任务所在的类如下所示:

@Component
public class MQMonitorTask {
private Logger logger = LoggerFactory.getLogger(MQMonitorTask.class);
/**
* Get the MQ depth of all the queues and send it to Influx
*/
@Scheduled(fixedDelay = 10000)
public void getMQData() {
logger.info("test");
//Custom code here
}
}

Pom 文件如下所示:

<?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>com.atlascopco</groupId>
<artifactId>PTITMonitorIntegrator</artifactId>
<version>1.0.0</version>
<name>PTITMonitorIntegrator</name>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>com.ibm</groupId>
<artifactId>mq</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.ibm</groupId>
<artifactId>mq.allclient</artifactId>
<version>1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.ibm</groupId>
<artifactId>msg.client.commonservices.wmq</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.6</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.influxdb/influxdb-java -->
<dependency>
<groupId>org.influxdb</groupId>
<artifactId>influxdb-java</artifactId>
<version>2.12</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<packaging>war</packaging>
<description>Spring boot application that will query for information for PT-IT Monitor system</description>
</project>

有人可以帮助我找到这个问题吗?当我创建一个jar文件而不是war文件并运行java -jar file.jar它时,它只是启动并且没有任何问题。但是在Tomcat服务器上运行是必需的。

你看过这个 spring-boot 文档创建可部署的战争文件吗?

您的应用程序类是否扩展了 SpringBootServletInitializer

尝试更改.jar庞姆战争.xml

最新更新