mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-18 13:58:07 +08:00
19 lines
448 B
Java
19 lines
448 B
Java
package com.yomahub.liteflow.springboot;
|
|
|
|
import com.yomahub.liteflow.spring.ComponentScaner;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* 组件扫描器自动装配类
|
|
* @author Bryan.Zhang
|
|
*/
|
|
@Configuration
|
|
public class LiteflowComponentScannerAutoConfiguration {
|
|
|
|
@Bean
|
|
public ComponentScaner componentScaner(){
|
|
return new ComponentScaner();
|
|
}
|
|
}
|