1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Merge pull request #400 from yellowgg/master

fix:fix typo
This commit is contained in:
SnailClimb 2019-07-25 22:03:22 +08:00 committed by GitHub
commit 9ae6c3f924
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ Spring 官网列出的 Spring 的 6 个特征:
![Spring主要模块](https://my-blog-to-use.oss-cn-beijing.aliyuncs.com/2019-6/Spring主要模块.png)
- **Spring Core** 基础,可以说 Spring 其他所有的功能都需要依赖于该类库。主要提供 IoC 依赖注入功能。
- **Spring Aspects ** 该模块为与AspectJ的集成提供支持。
- **Spring Aspects** 该模块为与AspectJ的集成提供支持。
- **Spring AOP** :提供了面向方面的编程实现。
- **Spring JDBC** : Java数据库连接。
- **Spring JMS** Java消息服务。
@ -227,7 +227,7 @@ public OneService getService(status) {
我们一般使用 `@Autowired` 注解自动装配 bean要想把类标识成可用于 `@Autowired` 注解自动装配的 bean 的类,采用以下注解可实现:
- `@Component` :通用的注解,可标注任意类为 `Spring` 组件。如果一个Bean不知道属于个层,可以使用`@Component` 注解标注。
- `@Component` :通用的注解,可标注任意类为 `Spring` 组件。如果一个Bean不知道属于个层,可以使用`@Component` 注解标注。
- `@Repository` : 对应持久层即 Dao 层,主要用于数据库相关操作。
- `@Service` : 对应服务层,主要涉及一些复杂的逻辑,需要用到 Dao层。
- `@Controller` : 对应 Spring MVC 控制层,主要用户接受用户请求并调用 Service 层返回数据给前端页面。

View File

@ -112,7 +112,7 @@ Git 有三种状态,你的文件可能处于其中之一:
2. **已修改modified**:已修改表示修改了文件,但还没保存到数据库中。
3. **已暂存staged**:表示对一个已修改文件的当前版本做了标记,使之包含在下次提交的快照中。
由此引入 Git 项目的三个工作区域的概念:**Git 仓库(.git directoty) **、**工作目录(Working Directory)** 以及 **暂存区域(Staging Area)**
由此引入 Git 项目的三个工作区域的概念:**Git 仓库(.git directoty)**、**工作目录(Working Directory)** 以及 **暂存区域(Staging Area)**
<div align="center">
<img src="https://my-blog-to-use.oss-cn-beijing.aliyuncs.com/2019-3areas.png" width="500px"/>