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

问题描述 投票:1回答:2

我有一个小型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服务器上运行。

java spring-boot tomcat8
2个回答
2
投票

你看过这个spring-boot文档Create a Deployable War File了吗?

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


1
投票

尝试在pom.xml中将jar更改为war

© www.soinside.com 2019 - 2024. All rights reserved.