java110
2022-06-01 e52ddfe8caf7d0027950033a5aff2a1fd3482e9d
java110-core/src/main/java/com/java110/core/event/init/SystemStartUpInit.java
old mode 100644 new mode 100755
@@ -1,6 +1,7 @@
package com.java110.core.event.init;
import com.java110.utils.factory.ApplicationContextFactory;
import com.java110.core.event.app.AppEvent;
import com.java110.core.event.app.AppEventPublishing;
import com.java110.core.event.app.AppListener;
import com.java110.core.event.listener.common.CommonDispatchListener;
@@ -150,7 +151,7 @@
                throw new ConfigurationException("配置错误,["+DISPATCH_EVENT+"= "+events+"] 当前 [event = "+event+"],只能有一个 :: ,配置格式为 A::B");
            }
            Class clazz = Class.forName(tmpEvent[1]);
            Class<AppEvent> clazz = (Class<AppEvent>) Class.forName(tmpEvent[1]);
            AppEventPublishing.addEvent(tmpEvent[0],clazz);
        }