Spring注解开发
✨使用注解开发
注意 :必须开启注解的支持 让注解生效(在 applicationContext.xml 中配置)
<!-- 指定要扫描的包 这个包下注解就会生效-->
<context:component-scan base-package="com.example"/>
<context:annotation-config/>
Maven依赖
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.9</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<!-- 指定要扫描的包 这个包下注解就会生效-->
<context:component-scan base-package="com.example"/>
<context:annotation-config/>
</beans>
✨自动装配注解
@Autowired
自动装配通过类型、名字匹配
@Qualifier
如果@Autowired不能唯一自动装配上属性(多个不同id的bean标签对应同一个类)
则需要通过 @Qualifier(value = “xxx”)
@Nullable
字段标记了这个注解 说明这个字段可以为Null
@Resource
自动装配通过名字、类型匹配
✨衍生注解
@Component
组件 放在类上 说明这个类被Spring管理了 就是Bean
在web开发中 按照MVC三层架构开发
- dao ->
@Repository
- service ->
@Service
- controller ->
@Controller
这四个注解功能一样 都是将某个类注册到Spring中 装配Bean
✨作用域
@Scope
✨XML与注解
XML与注解对比
- XML适用于任何场合!维护简单方便
- 注解不是自己的类无法使用 维护相对复杂
使用参考
- XML用来管理bean;
- 注解只负责完成属性的注入
✨Spring官方文档
Spring Framework Documentation
✨课程链接
【狂神说Java】Spring5最新完整教程IDEA版通俗易懂_哔哩哔哩_bilibili
⭐转载请注明出处
本文作者:双份浓缩馥芮白
原文链接:https://www.cnblogs.com/Flat-White/p/15110606.html
版权所有,如需转载请注明出处。