hyperf/docs/en/quick-start/overview.md

229 lines
11 KiB
Markdown
Raw Normal View History

2019-07-13 15:27:34 +08:00
# QuickStart
As an example of how to use `Hyperf`, this page will `create an HTTP Server` to implement a simple `Web Service` by defining routes and controllers. Hyperf can do much more, but features like service governance, `gRPC` services, annotations programming, `AOP`, and other features will be explained in specific chapters.
2019-07-13 15:27:34 +08:00
## Defining a route
2019-07-13 15:27:34 +08:00
`Hyperf` uses [nikic/fast-route](https://github.com/nikic/FastRoute) as the default routing component, so you can easily define your routes in `config/routes.php`. `Hyperf` also provides an extremely powerful and convenient `Annotation Routing` feature.
2019-07-13 15:27:34 +08:00
For more information on routing outside of the examples shown below, please refer to the [Router](en/router.md) chapter.
2019-07-13 15:27:34 +08:00
### Define routes via file configuration
2019-07-13 15:27:34 +08:00
The routes file is located in `config/routes.php` in the [hyperf-skeleton](https://github.com/hyperf/hyperf-skeleton) project. Below are some common usage examples:
2019-07-13 15:27:34 +08:00
```php
<?php
use Hyperf\HttpServer\Router\Router;
// The code example here provides three different binding definitions for each example. In practice, you only need to define one of them.
2019-07-13 15:27:34 +08:00
// Set the route for a GET request, bind the access address '/get' to App\Controller\IndexController::get()
Router::get('/get', 'App\Controller\IndexController::get');
Router::get('/get', 'App\Controller\IndexController@get');
Router::get('/get', [\App\Controller\IndexController::class, 'get']);
// Set the route for a POST request, bind the access address '/post' to App\Controller\IndexController::post()
Router::post('/post', 'App\Controller\IndexController::post');
Router::post('/post', 'App\Controller\IndexController@post');
Router::post('/post', [\App\Controller\IndexController::class, 'post']);
// Set a route that allows GET, POST, and HEAD requests, bind the access address '/multi' to App\Controller\IndexController::multi()
Router::addRoute(['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']);
```
### Define routes via annotations
2019-07-13 15:27:34 +08:00
2023-01-03 07:13:43 +08:00
`Hyperf` provides an [Annotations](en/annotation.md) feature which makes it fast and easy to define routes. Hyperf provides `#[Controller]` and `#[AutoController]` annotations for use in a `Controller` class. For in-depth instructions, please refer to the [Routing](en/router.md) chapter. Here are some quick examples:
2019-07-13 15:27:34 +08:00
2023-01-03 07:13:43 +08:00
### Define routes via `#[AutoController]`
2023-01-03 07:13:43 +08:00
`#[AutoController]` provides automatic routing bindings for most simple routing scenarios. When using `#[AutoController]`, `Hyperf` will automatically parse all `public` methods of the class and provide `GET` and `POST` requests for each of those methods.
2023-01-03 07:13:43 +08:00
> `#[AutoController]` annotations require the namespace `use Hyperf\HttpServer\Annotation\AutoController;`
2019-07-13 15:27:34 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Controller;
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\AutoController;
2023-01-03 07:13:43 +08:00
#[AutoController]
2019-07-13 15:27:34 +08:00
class IndexController
{
// Hyperf will automatically generate a `/index/index` route for this method, allowing GET or POST requests
2019-07-13 15:27:34 +08:00
public function index(RequestInterface $request)
{
// Retrieve the id parameter from the request
$id = $request->input('id', 1);
return (string)$id;
}
}
```
2023-01-03 07:13:43 +08:00
### Define routes via `#[Controller]`
2023-01-03 07:13:43 +08:00
For more flexible routing definitions, `#[Controller]` can be used instead of `#[AutoController]`. Using a `#[Controller]` annotation in a class makes it a `Controller class`, and the `#[RequestMapping]` annotation can be used to define the request methods and paths.
2019-07-13 15:27:34 +08:00
2023-01-03 07:13:43 +08:00
`Hyperf` also provides a variety of quick and convenient `Mapping annotations`, such as `#[GetMapping]`, `#[PostMapping]`, `#[PutMapping]`, `#[PatchMapping]`, `#[DeleteMapping]`, which can replace `#[RequestMapping]` to save you time when a route only needs a single HTTP method.
2019-07-13 15:27:34 +08:00
2023-01-03 07:13:43 +08:00
> `#[Controller]` annotations require the namespace `use Hyperf\HttpServer\Annotation\Controller;`
> `#[RequestMapping]` annotations require the namespace `use Hyperf\HttpServer\Annotation\RequestMapping;`
> `#[GetMapping]` annotations require the namespace `use Hyperf\HttpServer\Annotation\GetMapping;`
> `#[PostMapping]` annotations require the namespace `use Hyperf\HttpServer\Annotation\PostMapping;`
> `#[PutMapping]` annotations require the namespace `use Hyperf\HttpServer\Annotation\PutMapping;`
> `#[PatchMapping]` annotations require the namespace `use Hyperf\HttpServer\Annotation\PatchMapping;`
> `#[DeleteMapping]` annotations require the namespace `use Hyperf\HttpServer\Annotation\DeleteMapping;`
2019-07-13 15:27:34 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Controller;
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\RequestMapping;
2023-01-03 07:13:43 +08:00
#[Controller]
2019-07-13 15:27:34 +08:00
class IndexController
{
// Hyperf will automatically generate a `/index/index` route for this method, allowing GET or POST requests
2023-01-03 07:13:43 +08:00
#[RequestMapping(path: "index", methods: "get,post")]
2019-07-13 15:27:34 +08:00
public function index(RequestInterface $request)
{
// Retrieve the id parameter from the request
$id = $request->input('id', 1);
return (string)$id;
}
}
```
## Handle HTTP Requests
2019-07-13 15:27:34 +08:00
`Hyperf` is unopinionated. There is no requirement for you to implement HTTP request processing using any specific format. You can use the traditional `MVC mode` or the `RequestHandler mode` to handle requests. Let's take `MVC mode` as an example:
Create a `Controller` folder in the `app` folder and create a `IndexController.php` file. The `index` method gets the `id` parameter from the request, converts it to a `string` type and returns it to the client.
2019-07-13 15:27:34 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Controller;
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\AutoController;
2023-01-03 07:13:43 +08:00
#[AutoController]
2019-07-13 15:27:34 +08:00
class IndexController
{
// Hyperf will automatically generate a `/index/index` route for this method, allowing GET or POST requests
2019-07-13 15:27:34 +08:00
public function index(RequestInterface $request)
{
// Retrieve the id parameter from the request
$id = $request->input('id', 1);
// Transfer $id parameter to a string, and return $id to the client with Content-Type:plain/text
2019-07-13 15:27:34 +08:00
return (string)$id;
}
}
```
## Dependency Auto-Injection
Dependency injection is a very powerful feature provided by `Hyperf` and is the foundation for the flexibility of the framework.
2019-07-13 15:27:34 +08:00
2023-01-03 07:13:43 +08:00
`Hyperf` provides two methods of injection, one is through constructor injection, the other is through the `#[Inject]` annotation injection, below are examples for both methods:
2019-07-13 15:27:34 +08:00
Suppose we have an `\App\Service\UserService` class. There is a `getInfoById(int $id)` method in the class that takes an `id` argument and returns a user entity. The return type and internals aren't relevant to this documentation, so we won't pay them too much attention, what we want is to get `UserService` in our class and to use the methods of that class. The normal method is to instantiate the `UserService` class through `new UserService()`, but in `Hyperf` using dependency injection, we have a better solution.
2019-07-13 15:27:34 +08:00
### Injection via constructor
Declare the parameter type within the constructor's arguments, and `Hyperf` will automatically inject the corresponding object or value.
2019-07-13 15:27:34 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Controller;
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\AutoController;
use App\Service\UserService;
2023-01-03 07:13:43 +08:00
#[AutoController]
2019-07-13 15:27:34 +08:00
class IndexController
{
2023-01-03 07:13:43 +08:00
private UserService $userService;
2019-07-13 15:27:34 +08:00
// Declare the parameter type within the constructor's arguments, and Hyperf will automatically inject the corresponding object or value.
2019-07-13 15:27:34 +08:00
public function __construct(UserService $userService)
{
$this->userService = $userService;
}
// /index/info
public function info(RequestInterface $request)
{
$id = $request->input('id', 1);
return $this->userService->getInfoById((int)$id);
}
}
```
2023-01-03 07:13:43 +08:00
### Injection via `#[Inject]` annotation
2019-07-13 15:27:34 +08:00
2023-01-03 07:13:43 +08:00
Declare the parameter type above the corresponding class property via `@var` and use the `#[Inject]` annotation. `Hyperf` will automatically inject the corresponding object or value.
2019-07-13 15:27:34 +08:00
2023-01-03 07:13:43 +08:00
> `#[Inject]` annotations require the namespace `use Hyperf\Di\Annotation\Inject;`
2019-07-13 15:27:34 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Controller;
use Hyperf\HttpServer\Contract\RequestInterface;
use Hyperf\HttpServer\Annotation\AutoController;
use Hyperf\Di\Annotation\Inject;
use App\Service\UserService;
2023-01-03 07:13:43 +08:00
#[AutoController]
2019-07-13 15:27:34 +08:00
class IndexController
{
2023-01-03 07:13:43 +08:00
#[Inject]
private UserService $userService;
2019-07-13 15:27:34 +08:00
// /index/info
public function info(RequestInterface $request)
{
$id = $request->input('id', 1);
return $this->userService->getInfoById((int)$id);
}
}
```
In the above example, we can easily see that `$userService` is not instantiated manually, but the class object corresponding to the property is automatically injected by `Hyperf`.
However, this case does not really show the real power of dependency injection. We assume that `UserService` has its own depencencies, and that those dependencies have many other dependencies as well, so that any class you define needs to instantiate many objects manually and manage the order of each class's arguments. In `Hyperf`, we don't need to manually manage these dependencies, just declare the class name of the arguments we need, and `Hyperf` does all the work for us.
When `UserService` needs to undergo a drastic internal change such as replacing a local service with an RPC remote service, we only needs to adjust the class definition of `UserService.php` to replace the old service with the new RPC service in a single file.
## Start the server
2019-07-13 15:27:34 +08:00
Since `Hyperf` has a built-in coroutine server, `Hyperf` will run as a `CLI` process. After defining our routes and writing the application logic code, we can start the server by entering the root directory of the project and executing the command `php bin/hyperf.php start`.
2019-07-13 15:27:34 +08:00
2023-01-28 03:20:06 +08:00
When the `console` shows that the server has started, you can access the server through `cURL` or via the browser. By default, the url of the above dependency injection examples is `http://127.0.0.1:9501/index/info?id=1`.
2019-07-13 15:27:34 +08:00
## Reload the code
`Hyperf` is a persistent `CLI` application. Once the process starts, the parsed `PHP` code will remain unchanged while the process is running, so changes to the `PHP` code after the server starts will have no effect. If you want the server to reload your code, you need to terminate the process by typing `CTRL + C` in the `console` and then re-execute the command `php bin/hyperf.php start`.
2019-07-13 15:27:34 +08:00
> Tip: You can also configure the commands to manage the Server in your IDE, and you can quickly execute the `Start the Server` or `Reload the code` operations directly via the IDE's `Start/Stop` buttons.