package com.fdkankan.fusion; import com.fdkankan.fusion.config.CacheUtil; import org.mybatis.spring.annotation.MapperScan; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.CommandLineRunner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ComponentScan; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.transaction.annotation.EnableTransactionManagement; import org.springframework.web.socket.config.annotation.EnableWebSocket; @SpringBootApplication @EnableTransactionManagement//开启事务 @EnableScheduling @ComponentScan(basePackages = {"com.fdkankan.*"}) @MapperScan("com.fdkankan.**.mapper") public class FusionApplication implements CommandLineRunner { @Value("${upload.type}") private String uploadType; public static void main(String[] args) { SpringApplication.run(FusionApplication.class, args); } @Override public void run(String... args) throws Exception { CacheUtil.uploadType = uploadType; } }