1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/examples/basic.rs

48 lines
1.4 KiB
Rust
Raw Normal View History

2019-03-17 04:09:11 +00:00
use actix_web::{
get, middleware, web, App, Error, HttpRequest, HttpResponse, HttpServer,
};
2019-03-02 06:51:32 +00:00
2019-03-07 19:43:46 +00:00
#[get("/resource1/{name}/index.html")]
fn index(req: HttpRequest, name: web::Path<String>) -> String {
2019-03-02 06:51:32 +00:00
println!("REQ: {:?}", req);
2019-03-07 19:43:46 +00:00
format!("Hello: {}!\r\n", name)
2019-03-02 06:51:32 +00:00
}
async fn index_async(req: HttpRequest) -> &'static str {
2019-03-02 06:51:32 +00:00
println!("REQ: {:?}", req);
"Hello world!\r\n"
2019-03-02 06:51:32 +00:00
}
#[get("/")]
2019-03-02 06:51:32 +00:00
fn no_params() -> &'static str {
"Hello world!\r\n"
}
2019-03-05 00:29:03 +00:00
fn main() -> std::io::Result<()> {
2019-03-07 19:43:46 +00:00
std::env::set_var("RUST_LOG", "actix_server=info,actix_web=info");
2019-03-02 06:51:32 +00:00
env_logger::init();
2019-03-05 00:29:03 +00:00
HttpServer::new(|| {
App::new()
2019-03-25 20:02:10 +00:00
.wrap(middleware::DefaultHeaders::new().header("X-Version", "0.2"))
.wrap(middleware::Compress::default())
.wrap(middleware::Logger::default())
.service(index)
.service(no_params)
.service(
web::resource("/resource2/index.html")
.wrap(
middleware::DefaultHeaders::new().header("X-Version-R2", "0.3"),
)
.default_service(
web::route().to(|| HttpResponse::MethodNotAllowed()),
)
.route(web::get().to_async(index_async)),
)
.service(web::resource("/test1.html").to(|| "Test\r\n"))
2019-03-05 00:29:03 +00:00
})
.bind("127.0.0.1:8080")?
.workers(1)
2019-03-07 19:43:46 +00:00
.run()
2019-03-02 06:51:32 +00:00
}