码迷,mamicode.com
首页 > 其他好文 > 详细

记一下一个我误解的小特性

时间:2016-10-30 23:57:37      阅读:487      评论:0      收藏:0      [点我收藏+]

标签:root   定义   attribute   attr   []   void   scan   接口   boot   

@ComponentScan(Spring 框架提供)

组件扫描器,默认情况下 会扫描当前类 root package 下面的所有对象 并完成关系的建立。

而我之前一直是自己定义了value值.

 

  需要注意的是,这里的@SpringBootApplication自带@ComponentScan

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(
excludeFilters = {@Filter(
type = FilterType.CUSTOM,
classes = {TypeExcludeFilter.class}
)}
)
public @interface SpringBootApplication {
Class<?>[] exclude() default {};

String[] excludeName() default {};

@AliasFor(
annotation = ComponentScan.class,
attribute = "basePackages"
)
String[] scanBasePackages() default {};

@AliasFor(
annotation = ComponentScan.class,
attribute = "basePackageClasses"
)
Class<?>[] scanBasePackageClasses() default {};
}
以上就是他继承的接口。
@SpringBootApplication
@MapperScan("org.sselab.mapper")
public class Application {

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}

而@MapperScan的用法和他不一样,需要指定包的名称。!


记一下一个我误解的小特性

标签:root   定义   attribute   attr   []   void   scan   接口   boot   

原文地址:http://www.cnblogs.com/xd03122049/p/6014319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!