You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
879 B
27 lines
879 B
package com.fr.plugin.third.party.jsdbacbj; |
|
|
|
import com.fr.intelli.record.Focus; |
|
import com.fr.intelli.record.Original; |
|
import com.fr.plugin.context.PluginContext; |
|
import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor; |
|
import com.fr.plugin.third.party.jsdbacbj.config.CustomDataConfig; |
|
import com.fr.record.analyzer.EnableMetrics; |
|
import com.fr.stable.fun.Authorize; |
|
|
|
|
|
/** |
|
* 配置信息初始化 |
|
*/ |
|
@EnableMetrics |
|
@Authorize(callSignKey = "com.fr.plugin.third.party.jsdbacbj") |
|
public class OutputPluginLifecycleMonitor extends AbstractPluginLifecycleMonitor { |
|
@Override |
|
@Focus(id = "com.fr.plugin.third.party.jsdbacbj", text = "plugin-jsdbacbj", source = Original.PLUGIN) |
|
public void afterRun(PluginContext pluginContext) { |
|
CustomDataConfig.getInstance(); |
|
} |
|
|
|
@Override |
|
public void beforeStop(PluginContext pluginContext) { |
|
} |
|
}
|
|
|