1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 08:43:01 +01:00
actix-website/content/docs/autoreload.cn.md
2018-06-22 23:18:14 +08:00

66 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 自动重加载
menu: docs_patterns
weight: 1000
---
# 自动重新加载开发服务器
在开发过程中cargo自动重新编译变更代码会非常方便。这可以通过使用[cargo-watch](https://github.com/passcod/cargo-watch)来完成 。由于actix应用程序通常会绑定到端口以侦听传入的HTTP请求因此将它与[listenfd](https://crates.io/crates/listenfd)和[systemfd](https://github.com/mitsuhiko/systemfd)实用程序结合起来以确保套接字在应用程序编译和重新加载时保持打开状态是有意义的。
`systemfd`将打开一个套接字并将其传递给`cargo-watch`以监视更改然后调用编译器并运行您的actix应用程序。actix应用程序将使用`listenfd`获取 `systemfd`打开的套接字systemfd。
## 需要的二进制文件
对于自动重新加载体验,您需要安装`cargo-watch`和 `systemfd`。两者都用`cargo install`安装
```
cargo install systemfd cargo-watch
```
## 修改代码
此外您需要稍微修改您的actix应用程序以便它可以获取由`systemfd`打开的外部套接字。将`listenfd`添加到您的应用依赖项中:
```ini
[dependencices]
listenfd = "0.3"
```
然后修改您的服务器代码以仅以`bind`作为回调:
```rust
extern crate listenfd;
use listenfd::ListenFd;
use actix_web::{server, App, HttpRequest, Responder};
fn index(_req: HttpRequest) -> impl Responder {
"Hello World!"
}
fn main() {
let mut listenfd = ListenFd::from_env();
let mut server = server::new(|| {
App::new()
.resource("/", |r| r.f(index))
});
server = if let Some(l) = listenfd.take_tcp_listener(0).unwrap() {
server.listen(l)
} else {
server.bind("127.0.0.1:3000").unwrap()
};
server.run();
}
```
## 运行服务器
现在运行开发服务器调用这个命令:
```
systemfd --no-pid -s http::3000 -- cargo watch -x run
```