我有一个仅包含一些计划任务的小型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


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

@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文档Create a Deployable War File

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

10-04 13:31