KKSU
2024-05-13 6ff3fd9cceb165788696bb8c0fee36ff29ef1157
src/main/java/cc/mrbird/febs/FebsShiroApplication.java
@@ -1,12 +1,23 @@
package cc.mrbird.febs;
import cc.mrbird.febs.common.contants.AppContants;
import cc.mrbird.febs.common.contants.SystemConstants;
import cc.mrbird.febs.dapp.entity.DataDictionaryCustom;
import cc.mrbird.febs.dapp.enumerate.DataDictionaryEnum;
import cc.mrbird.febs.dapp.mapper.DataDictionaryCustomMapper;
import cc.mrbird.febs.dapp.service.DappSystemService;
import cn.hutool.core.util.StrUtil;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import javax.annotation.PostConstruct;
import java.lang.reflect.Field;
/**
 * @author MrBird
@@ -16,7 +27,16 @@
@SpringBootApplication
@EnableTransactionManagement
@MapperScan("cc.mrbird.febs.*.mapper")
@MapperScan("cc.mrbird.febs.dapp.*.mapper")
public class FebsShiroApplication {
    @Autowired
    private DataDictionaryCustomMapper dataDictionaryCustomMapper;
    @Autowired
    private DappSystemService dappSystemService;
    @Autowired
    private SystemConstants systemConstants;
    public static void main(String[] args) {
        new SpringApplicationBuilder(FebsShiroApplication.class)
@@ -24,4 +44,29 @@
                .run(args);
    }
//    @PostConstruct
//    public void systemConstantsInit() {
//        DataDictionaryCustom dataDictionaryCustom = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(
//                DataDictionaryEnum.FEE_ADDRESS_KEY.getType(),
//                DataDictionaryEnum.FEE_ADDRESS_KEY.getCode());
//        String key = dataDictionaryCustom.getCode();
//        key = StrUtil.toCamelCase(key);
//        String value = dataDictionaryCustom.getValue();
//        try {
//            Field field = systemConstants.getClass().getDeclaredField(key);
//            field.set(systemConstants, value);
//            AppContants.FEE_ADDRESS_KEY.put("feeAddressKey",systemConstants.getFeeAddressKey());
//            dataDictionaryCustom.setValue("isReady");
//            dataDictionaryCustomMapper.updateById(dataDictionaryCustom);
//        } catch (Exception e) {
//            e.printStackTrace();
//        }
//    }
//    @PostConstruct
//    public void systemDicInit() {
//        dappSystemService.selectAndInsertDics();
//    }
}