|
|
@@ -1,6 +1,7 @@
|
|
|
package com.zheng.common.listener;
|
|
|
|
|
|
import com.zheng.common.annotation.BaseService;
|
|
|
+import com.zheng.common.base.BaseInterface;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.context.ApplicationListener;
|
|
|
@@ -23,17 +24,31 @@ public class ApplicationContextListener implements ApplicationListener<ContextRe
|
|
|
if(null == contextRefreshedEvent.getApplicationContext().getParent()) {
|
|
|
_log.debug(">>>>> spring初始化完毕 <<<<<");
|
|
|
// spring初始化完毕后,通过反射调用所有使用BaseService注解的initMapper方法
|
|
|
- Map<String, Object> services = contextRefreshedEvent.getApplicationContext().getBeansWithAnnotation(BaseService.class);
|
|
|
- for(Object service : services.values()) {
|
|
|
+ Map<String, Object> baseServices = contextRefreshedEvent.getApplicationContext().getBeansWithAnnotation(BaseService.class);
|
|
|
+ for(Object service : baseServices.values()) {
|
|
|
_log.debug(">>>>> {}.initMapper()", service.getClass().getName());
|
|
|
try {
|
|
|
Method initMapper = service.getClass().getMethod("initMapper");
|
|
|
initMapper.invoke(service);
|
|
|
} catch (Exception e) {
|
|
|
- _log.error("初始化service的initMapper方法异常", e);
|
|
|
+ _log.error("初始化BaseService的initMapper方法异常", e);
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ // 系统入口初始化
|
|
|
+ Map<String, BaseInterface> baseInterfaceBeans = contextRefreshedEvent.getApplicationContext().getBeansOfType(BaseInterface.class);
|
|
|
+ for(Object service : baseInterfaceBeans.values()) {
|
|
|
+ _log.debug(">>>>> {}.init()", service.getClass().getName());
|
|
|
+ try {
|
|
|
+ Method init = service.getClass().getMethod("init");
|
|
|
+ init.invoke(service);
|
|
|
+ } catch (Exception e) {
|
|
|
+ _log.error("初始化BaseInterface的init方法异常", e);
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|