SpringBoot注解

Posted yifanSJ

tags:

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

在Main()方法启动类上使用
@SpringBootApplication:标注它是一个Spring Boot应用,等价于(默认属性)@Configuration + @EnableAutoConfiguration + @ComponentScan。
1. @Configuration:标识这个类可以是Spring IoC容器。它和@Bean可以用来替代xml配置文件。@Bean注解告诉Spring注解方法将返回一个对象,该对象应被注册为在Spring应用程序上下文中。
2. @EnableAutoConfiguration:能够自动配置spring的上下文,试图猜测和配置你想要的bean类,Spring Boot会自动根据你jar包的依赖来自动配置项目。例如当你项目下面有HSQLDB的依赖时,Spring Boot会创建默认的内存数据库的数据源DataSource。
3. @ComponentScan:会自动扫描指定包下的全部标有@Component的类,并注册成bean,当然包括@Component下的子注解@Service,@Repository,@Controller。
在配置类上使用
@Order(Ordered.HIGHEST_PRECEDENCE) 控制配置类的加载顺序,数值越小越先加载
@EnableTransactionManagement(proxyTargetClass = true) 开启事务注解,在Service方法上增加@Transactional
@EnableJpaRepositories(basePackages = "com.yweb.dao") 让spring在加载的时候找到我们自定义的BaseRepository
@EntityScan(basePackages = "com.yweb.entity") 扫描Entity实体类
 
@RestController 标注这个程序还是一个控制器
 
 
 

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

SpringBoot注解介绍

Springboot(四):springboot的注解都有哪些注解

springboot 异常注解

SpringBoot 高级 原理分析 -- @Enable*注解@Import注解

Springboot集成Mybatis ID生成策略注解 @GeneratedValue

springboot @ApiModelProperty()注解