1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-http/examples/hello-world.rs

35 lines
1.2 KiB
Rust
Raw Normal View History

2022-01-31 17:30:34 +00:00
use std::{convert::Infallible, io, time::Duration};
2022-03-10 03:12:29 +00:00
use actix_http::{header::HeaderValue, HttpService, Request, Response, StatusCode};
2018-12-11 02:08:33 +00:00
use actix_server::Server;
2022-03-10 03:12:29 +00:00
use tracing::info;
2018-11-23 04:12:40 +00:00
#[actix_rt::main]
async fn main() -> io::Result<()> {
2021-05-06 19:24:18 +00:00
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
2018-11-23 04:12:40 +00:00
2018-12-11 02:08:33 +00:00
Server::build()
2021-06-17 16:57:58 +00:00
.bind("hello-world", ("127.0.0.1", 8080), || {
2019-03-09 18:39:06 +00:00
HttpService::build()
2022-01-31 17:30:34 +00:00
.client_request_timeout(Duration::from_secs(1))
.client_disconnect_timeout(Duration::from_secs(1))
2021-12-08 22:58:50 +00:00
.on_connect_ext(|_, ext| {
ext.insert(42u32);
})
.finish(|req: Request| async move {
2022-03-10 03:12:29 +00:00
info!("{:?}", req);
2021-06-17 16:57:58 +00:00
let mut res = Response::build(StatusCode::OK);
2021-12-08 06:01:11 +00:00
res.insert_header(("x-head", HeaderValue::from_static("dummy value!")));
2021-06-17 16:57:58 +00:00
2022-03-10 03:12:29 +00:00
let forty_two = req.conn_data::<u32>().unwrap().to_string();
2023-07-17 01:38:12 +00:00
res.insert_header(("x-forty-two", HeaderValue::from_str(&forty_two).unwrap()));
2021-12-08 22:58:50 +00:00
2021-06-17 16:57:58 +00:00
Ok::<_, Infallible>(res.body("Hello world!"))
2018-12-06 22:32:52 +00:00
})
2019-12-02 11:33:11 +00:00
.tcp()
})?
.run()
.await
2018-11-23 04:12:40 +00:00
}