Browse Source
Merge in DESIGN/design from ~RINOUX/design:release/11.0 to release/11.0 * commit 'b41a6ed7b37da6fb64953a73c7e342e9c364002b': REPORT-51472 设计器启动缓存配置读写模块fix-lag
rinoux
3 years ago
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@
|
||||
package com.fr.start.module; |
||||
|
||||
import com.fr.esd.core.strategy.config.service.StrategyConfigService; |
||||
import com.fr.esd.impl.strategy.config.service.DefaultStrategyConfigServiceProvider; |
||||
import com.fr.module.Activator; |
||||
|
||||
/** |
||||
* @author rinoux |
||||
* @version 10.0 |
||||
* Created by rinoux on 2021/8/3 |
||||
*/ |
||||
public class DesignerESDActivator extends Activator { |
||||
@Override |
||||
public void start() { |
||||
StrategyConfigService.setService(new DefaultStrategyConfigServiceProvider()); |
||||
} |
||||
|
||||
@Override |
||||
public void stop() { |
||||
//ignore
|
||||
} |
||||
} |
Loading…
Reference in new issue