IT-KIMI_SHI\SINOIT.KIMI
2018-12-07 50eb1d766c470dc6ff927199eaee934f972a8b70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package aop;
 
import core.plugin.mybatis.MybatisHelper;
import org.springframework.beans.factory.InitializingBean;
import service.system.helper.SystemSettingHelper;
 
import javax.annotation.Resource;
 
/**
 * Created by ct on 2016/12/5.
 */
public class QuartzDbInit implements InitializingBean {
 
    @Resource
    private SystemSettingHelper systemSettingHelper;
 
    @Override
    public void afterPropertiesSet() throws Exception {
        MybatisHelper.supportColumnMap();
        systemSettingHelper.checkQuartzInitStatus();
    }
}