hyperf/zh/quick-start/overview.md

222 lines
9.5 KiB
Markdown
Raw Normal View History

2019-03-19 01:37:54 +08:00
# 快速入门
2019-03-08 12:04:46 +08:00
2019-03-20 16:21:02 +08:00
为了让您更快的了解 Hyperf 的使用,本章节将以 `创建一个 HTTP Server` 为例,通过对路由、控制器的定义实现一个简单的 Web 服务,但 Hyperf 不止于此完善的服务治理、gRPC 服务、注解、AOP 等功能将由具体的章节阐述。
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
## 定义访问路由
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
Hyperf 使用 [nikic/fast-route](https://github.com/nikic/FastRoute) 作为默认的路由组件并提供服务,您可以很方便的在 `config/routes.php` 中定义您的路由。
2019-03-20 16:21:02 +08:00
不仅如此,框架还提供了极其强大和方便灵活的`注解路由`功能,关于路由的详情文档请查阅 [路由](zh/router.md) 章节
2019-03-08 12:39:11 +08:00
2019-03-20 14:30:37 +08:00
### 通过配置文件定义路由
路由的文件位于 hyperf-skeleton 项目的 `config/routes.php` ,下面是一些常用的用法示例。
2019-03-18 22:36:18 +08:00
```php
<?php
2019-03-08 12:39:11 +08:00
use Hyperf\HttpServer\Router\Router;
2019-03-18 22:36:18 +08:00
// 此处代码示例为每个示例都提供了两种不同的绑定定义方式,实际配置时仅可采用一种且仅定义一次相同的路由
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
// 设置一个 GET 请求的路由,绑定访问地址 '/get' 到 App\Controller\IndexController 的 get 方法
Router::get('/get', 'App\Controller\IndexController@get');
Router::get('/get', [\App\Controller\IndexController::class, 'get']);
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
// 设置一个 POST 请求的路由,绑定访问地址 '/post' 到 App\Controller\IndexController 的 post 方法
Router::post('/post', 'App\Controller\IndexController@post');
Router::post('/post', [\App\Controller\IndexController::class, 'post']);
// 设置一个允许 GET、POST 和 HEAD 请求的路由,绑定访问地址 '/multi' 到 App\Controller\IndexController 的 multi 方法
Router::addRoute(['GET', 'POST', 'HEAD'], '/multi', 'App\Controller\IndexController@multi');
Router::addRoute(['GET', 'POST', 'HEAD'], '/multi', [\App\Controller\IndexController::class, 'multi']);
```
### 通过注解来定义路由
2019-03-20 16:21:02 +08:00
Hyperf 提供了极其强大和方便灵活的 [注解](zh/annotation.md) 功能在路由的定义上也毫无疑问地提供了注解定义的方式Hyperf 提供了 `@Controller``@AutoController` 两种注解来定义一个 Controller此处仅做简单的说明更多细节请查阅 [路由](zh/router.md) 章节。
2019-03-18 22:36:18 +08:00
### 通过 `@AutoController` 注解定义路由
`@AutoController` 为绝大多数简单的访问场景提供路由绑定支持,使用 `@AutoController` 时则 Hyperf 会自动解析所在类的所有 `public` 方法并提供 `GET``POST` 两种请求方式。
> 使用 `@AutoController` 注解时需 `use Hyperf\HttpServer\Annotation\AutoController;` 命名空间;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
```php
<?php
2019-03-08 12:39:11 +08:00
declare(strict_types=1);
2019-03-18 22:36:18 +08:00
namespace App\Controller;
2019-03-08 12:39:11 +08:00
use Hyperf\HttpServer\Contract\RequestInterface;
2019-03-18 22:36:18 +08:00
use Hyperf\HttpServer\Annotation\AutoController;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
/**
* @AutoController()
*/
2019-03-08 12:39:11 +08:00
class IndexController
{
2019-03-18 22:36:18 +08:00
// Hyperf 会自动为此方法生成一个 /index/index 的路由,允许通过 GET 或 POST 方式请求
2019-03-08 12:39:11 +08:00
public function index(RequestInterface $request)
{
2019-03-18 22:36:18 +08:00
// 从请求中获得 id 参数
2019-03-08 12:39:11 +08:00
$id = $request->input('id', 1);
return (string)$id;
}
}
2019-03-18 22:36:18 +08:00
```
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
### 通过 `@Controller` 注解定义路由
`@Controller` 为满足更细致的路由定义需求而存在,使用 `@Controller` 注解用于表名当前类为一个 Controller类同时需配合 `@RequestMapping` 注解来对请求方法和请求路径进行更详细的定义。
我们也提供了多种快速便捷的 Mapping注解`@GetMapping`、`@PostMapping`、`@PutMapping`、`@PatchMapping`、`@DeleteMapping` 5种便捷的注解用于表明允许不同的请求方法。
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
> 使用 `@Controller` 注解时需 `use Hyperf\HttpServer\Annotation\Controller;` 命名空间;
> 使用 `@RequestMapping` 注解时需 `use Hyperf\HttpServer\Annotation\RequestMapping;` 命名空间;
> 使用 `@GetMapping` 注解时需 `use Hyperf\HttpServer\Annotation\GetMapping;` 命名空间;
> 使用 `@PostMapping` 注解时需 `use Hyperf\HttpServer\Annotation\PostMapping;` 命名空间;
> 使用 `@PutMapping` 注解时需 `use Hyperf\HttpServer\Annotation\PutMapping;` 命名空间;
> 使用 `@PatchMapping` 注解时需 `use Hyperf\HttpServer\Annotation\PatchMapping;` 命名空间;
> 使用 `@DeleteMapping` 注解时需 `use Hyperf\HttpServer\Annotation\DeleteMapping;` 命名空间;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
```php
2019-03-08 12:39:11 +08:00
<?php
declare(strict_types=1);
2019-03-18 22:36:18 +08:00
namespace App\Controller;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\RequestMapping;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
/**
* @Controller()
*/
class IndexController
2019-03-08 12:39:11 +08:00
{
2019-03-18 22:36:18 +08:00
// Hyperf 会自动为此方法生成一个 /index/index 的路由,允许通过 GET 或 POST 方式请求
2019-03-08 12:39:11 +08:00
/**
2019-03-18 22:36:18 +08:00
* @RequestMapping(path="index", method="get,post")
2019-03-08 12:39:11 +08:00
*/
2019-03-18 22:36:18 +08:00
public function index(RequestInterface $request)
{
// 从请求中获得 id 参数
$id = $request->input('id', 1);
return (string)$id;
}
}
```
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
## 处理 HTTP 请求
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
Hyperf 是完全开放的,本质上没有规定您必须基于某种模式下去实现请求的处理,您可以采用传统的 `MVC模式`,亦可以采用 `RequestHandler模式` 来进行开发。
我们以 `MVC模式` 来举个例子:
`app` 文件夹内创建一个 `Controller` 文件夹并创建 `IndexController.php` 如下,`index` 方法内从请求中获取了 `id` 参数,并转换为 字符串 类型返回到客户端。
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Controller;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\AutoController;
/**
* @AutoController()
*/
class IndexController
{
// Hyperf 会自动为此方法生成一个 /index/index 的路由,允许通过 GET 或 POST 方式请求
public function index(RequestInterface $request)
2019-03-08 12:39:11 +08:00
{
2019-03-18 22:36:18 +08:00
// 从请求中获得 id 参数
$id = $request->input('id', 1);
// 转换 $id 为字符串格式并以 plain/text 的 Content-Type 返回 $id 的值给客户端
return (string)$id;
2019-03-08 12:39:11 +08:00
}
}
2019-03-18 22:36:18 +08:00
```
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
## 依赖自动注入
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
依赖自动注入是 Hyperf 提供的一个非常强大的功能,也是保持框架灵活性的根基。
Hyperf 提供了两种注入方式,一种是大家常见的通过构造函数注入,另一种是通过 `@Inject` 注解注入,下面我们举个例子并分别以两种方式展示注入的实现;
假设我们存在一个 `\App\Service\UserService` 类,类中存在一个 `getInfoById(int $id)` 方法通过传递一个 `id` 并最终返回一个用户实体,由于返回值并不是我们这里所需要关注的,所以不做过多阐述,我们要关注的是在任意的类中获取 `UserService` 并调用里面的方法,一般的方法是通过 `new UserService()` 来实例化该服务类,但在 Hyperf 下,我们有更优的解决方法。
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
### 通过构造函数注入
只需在构造函数的参数内声明参数的类型Hyperf 会自动注入对应的对象或值。
```php
<?php
2019-03-08 12:39:11 +08:00
declare(strict_types=1);
2019-03-18 22:36:18 +08:00
namespace App\Controller;
2019-03-08 12:39:11 +08:00
use Hyperf\HttpServer\Contract\RequestInterface;
2019-03-18 22:36:18 +08:00
use Hyperf\HttpServer\Annotation\AutoController;
use App\Service\UserService;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
/**
* @AutoController()
*/
2019-03-08 12:39:11 +08:00
class IndexController
{
/**
2019-03-18 22:36:18 +08:00
* @var UserService
2019-03-08 12:39:11 +08:00
*/
2019-03-18 22:36:18 +08:00
private $userService;
// 在构造函数声明参数的类型Hyperf 会自动注入对应的对象或值
public function __construct(UserService $userService)
2019-03-08 12:39:11 +08:00
{
2019-03-18 22:36:18 +08:00
$this->userService = $userService;
2019-03-08 12:39:11 +08:00
}
2019-03-18 22:36:18 +08:00
// /index/info
public function info(RequestInterface $request)
2019-03-08 12:39:11 +08:00
{
$id = $request->input('id', 1);
2019-03-18 22:36:18 +08:00
return $this->userService->getInfoById((int)$id);
2019-03-08 12:39:11 +08:00
}
}
2019-03-18 22:36:18 +08:00
```
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
### 通过 `@Inject` 注解注入
只需对对应的类属性通过 `@var` 声明参数的类型,并使用 `@Inject` 注解标记属性 Hyperf 会自动注入对应的对象或值。
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
> 使用 `@Inject` 注解时需 `use Hyperf\Di\Annotation\Inject;` 命名空间;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
```php
2019-03-08 12:39:11 +08:00
<?php
2019-03-18 22:36:18 +08:00
declare(strict_types=1);
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
namespace App\Controller;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\AutoController;
use Hyperf\Di\Annotation\Inject;
use App\Service\UserService;
2019-03-08 12:39:11 +08:00
2019-03-18 22:36:18 +08:00
/**
* @AutoController()
*/
class IndexController
{
/**
* @Inject()
* @var UserService
*/
private $userService;
// /index/info
public function info(RequestInterface $request)
{
$id = $request->input('id', 1);
return $this->userService->getInfoById((int)$id);
}
}
```
2019-03-21 10:54:42 +08:00
通过上面的示例我们不难发现 `$userService` 在没有实例化的情况下, 属性对应的类对象被自动注入了。
不过这里的案例并未真正体现出依赖自动注入的好处及其强大之处,我们假设一下 `UserService` 也存在很多的依赖,而这些依赖同时又存在很多其它的依赖时,`new` 实例化的方式就需要手动实例化很多的对象并调整好对应的参数位,而在 Hyperf 里我们就无须手动管理这些依赖,只需要声明一下最终使用的类即可。
而当 `UserService` 需要发生替换等剧烈的内部变化时,比如从一个本地服务替换成了一个 RPC 远程服务,也只需要通过配置调整依赖中 `UserService` 这个键值对应的类为新的RPC服务类即可。
2019-03-08 12:39:11 +08:00
2019-03-19 20:18:29 +08:00
## 启动 Hyperf 服务
由于 Hyperf 内置了协程服务器,也就意味着 Hyperf 将以 CLI 的形式去运行,所以在定义好路由及实际的逻辑代码之后,我们需要在项目根目录并通过命令行运行 `php bin/hyperf.php start` 来启动服务。
当 Console 界面显示服务启动后便可通过 cURL 或 浏览器对服务正常发起访问了。