关于java注解Spring Boot的教学
声明bean的注解:
@Component组件,没有明确角色的bean
@Service,在业务逻辑层(service)中使用
@Repository,在数据访问层(dao)中使用
@Controller,在展现层中使用
@Configuration声明配置类
实体类无需添加注解,因为并不需要“注入”实体类
指定Bean的作用域的注解:
@Scope("prototype")
默认值为singleton
可选值prototype、request、session、globalSession
声明生成Bean的方法的注解:
@Bean 用在方法上,告诉Spring容器,你可以从下面这个方法中拿到一个Bean
使用AnnotationApplicationContext对象的getBean方法获取Bean
注入Bean的注解:
@Autowired,自动注入(默认为byType型的注入),可以用在属性或者方法上,可以通过设置required = "false"说明不要求一定要注入有多个同样的接口的实现时,通过@qualifier区分
当注入的变量为List后者Map时,会把所有的接口实现都注入进来,key为Bean的名字,value为实现类对象。可以通过在实现类上添加@order=1来指定加载顺序,数越小越优先加载
@Lazy启动延迟注入
配置类注解:
@Configuration声明当前类是一个配置类,相当于Spring配置的一个xml文件
@ComponentScan,自动扫描配置类所在包名下的所有bean
@EnableAutoConfiguration,启动自动配置
在spring boot中这三个注解可以用一个@SpringBootApplication替代
@EnableTransactionManagement,开启事务支持
事务管理:
@EnableTransactionManagement,加在配置类中,开启事务支持
@Transactional,加在Service的方法上,标注需要事务支持
AOP注解:
@AspectJ
任务调度:
@Scheduled用在需要定时执行的方法上 @EnableScheduling用在需要使用的入口类上
Spring MVC集成:
首先需要对Application类进行修改
@SpringBootApplication @EnableTransactionManagement //1、添加继承SpringBootServletInitializer public class Application extends SpringBootServletInitializer{ public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override //2、重写configure方法 protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return super.configure(builder); } } Spring MVC的注解: @Controller,在展现层使用 @ResponseBody @RestController
【相关推荐】
1. 特别推荐:“php程序员工具箱”V0.1版本下载
2. Java免费视频教程
3. JAVA初级入门教程
以上就是关于java注解Spring Boot的教学的详细内容,更多请关注其它相关文章!
推荐阅读
-
在spring boot中使用java线程池ExecutorService的讲解
-
Spring Boot基础入门之基于注解的Mybatis
-
关于spring中aop的注解实现方法实例详解
-
关于Spring Boot和Kotlin的联合开发
-
spring-boot通过@Scheduled配置定时任务及定时任务@Scheduled注解的方法
-
详解spring 配置的两种方式:JAVA配置和注解配置
-
spring boot基于Java的容器配置讲解
-
详解使用Spring Boot的AOP处理自定义注解
-
关于Spring Boot和Kotlin的联合开发
-
Java Spring boot 2.0 跨域问题的解决