com.github.linyuzai.plugin.autoconfigure.EnablePluginConcept Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of concept-plugin-spring-boot-starter Show documentation
Show all versions of concept-plugin-spring-boot-starter Show documentation
Dynamic loading classes with external jar simply and gracefully
The newest version!
package com.github.linyuzai.plugin.autoconfigure;
import com.github.linyuzai.plugin.autoconfigure.preperties.PluginConceptProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Import;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 启用插件
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@EnableConfigurationProperties(PluginConceptProperties.class)
@Import({PluginConceptConfiguration.class, PluginManagementConfiguration.class})
public @interface EnablePluginConcept {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy