mirror of
https://github.com/actix/actix-website
synced 2024-11-24 08:43:01 +01:00
1.9 KiB
1.9 KiB
title | menu | weight |
---|---|---|
自动重加载 | docs_patterns | 1000 |
自动重新加载开发服务器
在开发过程中,cargo自动重新编译变更代码会非常方便。这可以通过使用cargo-watch来完成 。由于actix应用程序通常会绑定到端口以侦听传入的HTTP请求,因此将它与listenfd和systemfd实用程序结合起来以确保套接字在应用程序编译和重新加载时保持打开状态是有意义的。
systemfd
将打开一个套接字并将其传递给cargo-watch
以监视更改,然后调用编译器并运行您的actix应用程序。actix应用程序将使用listenfd
获取 systemfd
打开的套接字systemfd。
需要的二进制文件
对于自动重新加载体验,您需要安装cargo-watch
和 systemfd
。两者都用cargo install
安装
cargo install systemfd cargo-watch
修改代码
此外,您需要稍微修改您的actix应用程序,以便它可以获取由systemfd
打开的外部套接字。将listenfd
添加到您的应用依赖项中:
[dependencices]
listenfd = "0.3"
然后修改您的服务器代码以仅以bind
作为回调:
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