java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > @ComponentScan注解使用

Springboot中的@ComponentScan注解使用解析

作者:沐雨金鳞

这篇文章主要介绍了Springboot中的@ComponentScan注解使用解析,@ComponentScan用于类或接口上主要是指定扫描路径,spring会把指定路径下带有指定注解的类注册到IOC容器中,需要的朋友可以参考下

@ComponentScan注解

一、@ComponentScan注解作用

扫描指定注解的类注册到IOC容器中

二、@ComponentScan使用

常用属性如下:

三、@ComponentScan的常见的配置

@ComponentScan(value="com.maple.learn",
   excludeFilters = {@ComponentScan.Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class)},
   includeFilters = {@ComponentScan.Filter(type=FilterType.ANNOTATION,classes={Controller.class})}
        )
public class SampleClass{
   ……

到此这篇关于Springboot中的@ComponentScan注解使用解析的文章就介绍到这了,更多相关@ComponentScan注解使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文