```javascript 4.0.0 org.springframework.boot spring-boot-starter-parent 2.7.6 com.trs ggzy-exchange-master-quartz 1.0.1-SNAPSHOT war ggzy-exchange-master-quartz ggzy-exchange-master-quartz 1.8 7.9.2 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat javax.servlet javax.servlet-api provided org.springframework.boot spring-boot-devtools runtime true org.projectlombok lombok true org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-quartz com.baomidou mybatis-plus-boot-starter 3.4.1 com.baomidou mybatis-plus-generator 3.4.1 org.freemarker freemarker 2.3.30 com.alibaba druid-spring-boot-starter 1.1.10 mysql mysql-connector-java runtime org.apache.commons commons-lang3 com.alibaba fastjson 1.2.73 com.googlecode.juniversalchardet juniversalchardet 1.0.3 org.springframework.boot spring-boot-starter-data-redis cn.hutool hutool-all 5.8.12 org.springframework.boot spring-boot-starter-data-elasticsearch cn.com.kingbase kingbase8 8.6.0 ggzy-exchange-master-quartz org.springframework.boot spring-boot-maven-plugin maven-war-plugin org.apache.maven.plugins maven-deploy-plugin true ``` ```java package com.trs.ggzyexchange; import org.mybatis.spring.annotation.MapperScan; 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.scheduling.annotation.EnableScheduling; //@EnableScheduling @SpringBootApplication @MapperScan("com.trs.ggzyexchange.mapper") public class GgzyExchangeApplication extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return builder.sources(this.getClass()); } public static void main(String[] args) { SpringApplication.run(GgzyExchangeApplication.class, args); } } ```