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.
42 lines
1.1 KiB
42 lines
1.1 KiB
package com.fanruan.boot.env; |
|
|
|
import com.fanruan.boot.CorePluginComponent; |
|
import com.fanruan.carina.Carina; |
|
import com.fanruan.carina.annotions.DependsOn; |
|
import com.fanruan.carina.annotions.FineComponent; |
|
import com.fanruan.carina.annotions.Start; |
|
import com.fanruan.carina.annotions.Supplemental; |
|
import com.fanruan.plugin.autonomy.AutonomyClassManagerGroup; |
|
import com.fanruan.plugin.autonomy.AutonomyClassManagerProvider; |
|
import com.fr.plugin.ExtraClassManager; |
|
|
|
/** |
|
* DesignCorePluginComponent |
|
* |
|
* @author Destiny.Lin |
|
* @since 11.0 |
|
* Created on 2024/8/9 |
|
*/ |
|
@FineComponent(name = "design_plugin_core") |
|
@DependsOn(dependencies = {"design_plugin"}) |
|
public class DesignCorePluginComponent extends CorePluginComponent { |
|
|
|
/** |
|
* prepare |
|
*/ |
|
@Supplemental |
|
public void supportFunctionDef() { |
|
super.supportFunctionDef(); |
|
} |
|
|
|
/** |
|
* start |
|
*/ |
|
@Start |
|
public void start() { |
|
/// 插件下沉不能直接调用fbp的逻辑,此时内置服务器未启动,一部分逻辑要拆到内置服务器启动的时候再做 |
|
// super.start(); |
|
} |
|
|
|
|
|
}
|
|
|