X Tutup
Skip to content

Commit 787c319

Browse files
committed
fix:书写错误->Spring篇
1 parent de85bf4 commit 787c319

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/system-design/framework/spring/SpringInterviewQuestions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Spring 官网列出的 Spring 的 6 个特征:
4343
![Spring主要模块](https://my-blog-to-use.oss-cn-beijing.aliyuncs.com/2019-6/Spring主要模块.png)
4444

4545
- **Spring Core:** 基础,可以说 Spring 其他所有的功能都需要依赖于该类库。主要提供 IoC 依赖注入功能。
46-
- **Spring Aspects ** : 该模块为与AspectJ的集成提供支持。
46+
- **Spring Aspects** : 该模块为与AspectJ的集成提供支持。
4747
- **Spring AOP** :提供了面向方面的编程实现。
4848
- **Spring JDBC** : Java数据库连接。
4949
- **Spring JMS** :Java消息服务。
@@ -227,7 +227,7 @@ public OneService getService(status) {
227227

228228
我们一般使用 `@Autowired` 注解自动装配 bean,要想把类标识成可用于 `@Autowired` 注解自动装配的 bean 的类,采用以下注解可实现:
229229

230-
- `@Component` :通用的注解,可标注任意类为 `Spring` 组件。如果一个Bean不知道属于拿个层,可以使用`@Component` 注解标注。
230+
- `@Component` :通用的注解,可标注任意类为 `Spring` 组件。如果一个Bean不知道属于哪个层,可以使用`@Component` 注解标注。
231231
- `@Repository` : 对应持久层即 Dao 层,主要用于数据库相关操作。
232232
- `@Service` : 对应服务层,主要涉及一些复杂的逻辑,需要用到 Dao层。
233233
- `@Controller` : 对应 Spring MVC 控制层,主要用户接受用户请求并调用 Service 层返回数据给前端页面。

0 commit comments

Comments
 (0)
X Tutup