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

51 lines
1.5 KiB
Rust
Raw Normal View History

2019-03-02 06:51:32 +00:00
use futures::IntoFuture;
use actix_web::macros::get;
use actix_web::{middleware, web, App, Error, HttpRequest, HttpResponse, HttpServer};
2019-03-02 06:51:32 +00:00
#[get("/resource1/index.html")]
2019-03-02 06:51:32 +00:00
fn index(req: HttpRequest) -> &'static str {
println!("REQ: {:?}", req);
"Hello world!\r\n"
}
fn index_async(req: HttpRequest) -> impl IntoFuture<Item = &'static str, Error = Error> {
println!("REQ: {:?}", req);
Ok("Hello world!\r\n")
}
#[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-02 06:51:32 +00:00
::std::env::set_var("RUST_LOG", "actix_server=info,actix_web2=info");
env_logger::init();
let sys = actix_rt::System::new("hello-world");
2019-03-05 00:29:03 +00:00
HttpServer::new(|| {
App::new()
.middleware(middleware::DefaultHeaders::new().header("X-Version", "0.2"))
.middleware(middleware::Compress::default())
.service(index)
.service(no_params)
.service(
web::resource("/resource2/index.html")
.middleware(
middleware::DefaultHeaders::new().header("X-Version-R2", "0.3"),
)
.default_resource(|r| {
r.route(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)
.start();
2019-03-02 06:51:32 +00:00
sys.run()
2019-03-02 06:51:32 +00:00
}