springBoot注解解释

Posted 不疯魔难成活

tags:

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

@EnableAutoConfiguration:启用springboot的自动配置,根据所声明的依赖对Spring进行自动配置

@ComponentScan  和  @Component在应用程序所在的程序包上启用扫描

@Configuration:允许在上下文中注册额外的bean或导入其他配置类

@RestController:标记该controller反会json格式,用来直接编写Restful接口

@SpringBootApplication:标记为启动类

使用ComponentScanEnableAutoConfiguration代替SpringBootApplication启动

 

@ComponentScan(basePackages = "com.test.run")//---控制器扫包范围
@EnableAutoConfiguration
public class App {
	public static void main(String[] args) {
		SpringApplication.run(App.class, args);
	}
}

 

  

 

 

以上是关于springBoot注解解释的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot常见注解的解释

springBoot注解解释

Springboot注解,元注解,常规操作

Springboot注解,元注解,常规操作

springcloud注解解释

廖师兄springboot微信点餐开发中相关注解使用解释