123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.fdkankan.sale;
- import com.fdkankan.sale.common.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.cloud.client.discovery.EnableDiscoveryClient;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.scheduling.annotation.EnableScheduling;
- import org.springframework.transaction.annotation.EnableTransactionManagement;
- @SpringBootApplication
- @EnableTransactionManagement//开启事务
- @EnableDiscoveryClient
- @EnableScheduling
- @ComponentScan(basePackages = {"com.fdkankan.*"})
- @MapperScan("com.fdkankan.**.mapper")
- public class SaleApplication implements CommandLineRunner {
- @Value("${spring.profiles.active}")
- private String environment;
- @Value("${fyun.type}")
- private String uploadType;
- @Value("${fyun.bucket}")
- private String bucket;
- @Value("${fyun.host}")
- private String host;
- @Value("${main.url}")
- private String mainUrl;
- public static void main(String[] args) {
- SpringApplication.run(SaleApplication.class, args);
- }
- @Override
- public void run(String... args) throws Exception {
- CacheUtil.uploadType = uploadType;
- CacheUtil.bucket = bucket;
- CacheUtil.environment = environment;
- CacheUtil.host = host;
- CacheUtil.mainUrl = mainUrl;
- }
- }
|