12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.fdkankan.ucenter;
- import com.fdkankan.ucenter.common.constants.NacosProperty;
- import com.fdkankan.ucenter.common.constants.ShellCmd;
- 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 UserCenterApplication implements CommandLineRunner {
- @Value("${fyun.bucket}")
- private String bucket;
- @Value("${fyun.type}")
- private String uploadType;
- @Value("${main.url}")
- private String mainUrl;
- @Value("${spring.profiles.active}")
- private String activeFile;
- public static void main(String[] args) {
- SpringApplication.run(UserCenterApplication.class, args);
- }
- @Override
- public void run(String... args) throws Exception {
- NacosProperty.bucket = bucket;
- NacosProperty.uploadType = uploadType;
- NacosProperty.activeFile = activeFile;
- NacosProperty.setMainUrl(mainUrl);
- }
- }
|