华清远见HTML5网页设计
者@resource等注解来使用它。
@SpringBootApplication:
@Target({ElementType.TYPE}) //注解适用范围,Type表示注解可描述在类、接口、注解或枚举中@Retention(RetentionPolicy.RUNTIME) //表示注解的生命周期,Runtime运行时@Documented //表示注解可以记录在javadoc中@Inherited //表示可以被子类继承该注解@SpringBootConfiguration // 标明该类为配置类 @EnableAutoConfiguration // 启动自动配置功能@ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes =