Update overview.md

表名->表明
This commit is contained in:
WarnerYang 2019-08-07 17:19:34 +08:00 committed by GitHub
parent d9cef6160a
commit 440486215b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ class IndexController
```
### 通过 `@Controller` 注解定义路由
`@Controller` 为满足更细致的路由定义需求而存在,使用 `@Controller` 注解用于表当前类为一个 `Controller类`,同时需配合 `@RequestMapping` 注解来对请求方法和请求路径进行更详细的定义。
`@Controller` 为满足更细致的路由定义需求而存在,使用 `@Controller` 注解用于表当前类为一个 `Controller类`,同时需配合 `@RequestMapping` 注解来对请求方法和请求路径进行更详细的定义。
我们也提供了多种快速便捷的 `Mapping注解`,如 `@GetMapping`、`@PostMapping`、`@PutMapping`、`@PatchMapping`、`@DeleteMapping` 5种便捷的注解用于表明允许不同的请求方法。
> 使用 `@Controller` 注解时需 `use Hyperf\HttpServer\Annotation\Controller;` 命名空间;