12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.fdkankan.manage;
- import com.fdkankan.manage.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 ManageApplication implements CommandLineRunner {
- @Value("${fyun.type}")
- private String uploadType;
- @Value("${fyun.bucket}")
- private String bucket;
- @Value("${camera.space.unit:GB}")
- private String cameraUnit;
- @Value("${camera.space.num:10737418240}")
- private String cameraSpaceNum;
- @Value("${camera.snCode.publicKey:1}")
- private String publicKey;
- @Value("${camera.snCode.privateKey:1}")
- private String privateKey;
- @Value("${laser.reg.env:UAT}")
- private String laserRegEnv;
- public static void main(String[] args) {
- SpringApplication.run(ManageApplication.class, args);
- }
- @Override
- public void run(String... args) throws Exception {
- CacheUtil.uploadType = uploadType;
- CacheUtil.bucket = bucket;
- CacheUtil.cameraUnit = cameraUnit;
- CacheUtil.cameraSpaceNum = cameraSpaceNum;
- CacheUtil.publicKey = publicKey;
- CacheUtil.privateKey = privateKey;
- CacheUtil.laserRegEnv = laserRegEnv;
- }
- }
|