# Spring-Study
**Repository Path**: zeng-zixi/Spring-Study
## Basic Information
- **Project Name**: Spring-Study
- **Description**: 解决企业应用开发的复杂性
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2021-03-19
- **Last Updated**: 2021-04-09
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Spring-Study
#### 介绍
解决企业应用开发的复杂性
#### 常用依赖
org.springframework
spring-webmvc
5.2.0.RELEASE
junit
junit
4.12
test
#### 注解说明
1. @Autowired:自动装配通过类型,名字
如果@Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value"xxx")
2. @Nullable:字段标记了这个注解,说明这个字段可以为Null。
3. @Resoure:自动装配通过名字,类型。
4.@Component:组件,放在类上,说明这个类被Spring管理了,就是bean。