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

Posted xd_net2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记一下一个我误解的小特性相关的知识,希望对你有一定的参考价值。

@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的用法和他不一样,需要指定包的名称。!


以上是关于记一下一个我误解的小特性的主要内容,如果未能解决你的问题,请参考以下文章

对onActivityCreated片段回调有啥误解吗?

基于FPGA驱动VGA显示图片的小问题

方便的 F# 片段 [关闭]

在我的“设置”片段中膨胀类 PreferenceScreen 时出错

在“设置”片段中夸大类PreferenceScreen的错误

Atom编辑器折腾记_(15)JS代码片段补全(插件:javascript-snippets)