mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
copy actix-web2
This commit is contained in:
parent
6d11ee683f
commit
2d7293aaf8
127 changed files with 7554 additions and 43481 deletions
54
examples/basic.rs
Normal file
54
examples/basic.rs
Normal file
|
@ -0,0 +1,54 @@
|
|||
use futures::IntoFuture;
|
||||
|
||||
use actix_http::{h1, http::Method, Response};
|
||||
use actix_server::Server;
|
||||
use actix_web2::{middleware, App, Error, HttpRequest, Resource};
|
||||
|
||||
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")
|
||||
}
|
||||
|
||||
fn no_params() -> &'static str {
|
||||
"Hello world!\r\n"
|
||||
}
|
||||
|
||||
fn main() {
|
||||
::std::env::set_var("RUST_LOG", "actix_server=info,actix_web2=info");
|
||||
env_logger::init();
|
||||
let sys = actix_rt::System::new("hello-world");
|
||||
|
||||
Server::build()
|
||||
.bind("test", "127.0.0.1:8080", || {
|
||||
h1::H1Service::new(
|
||||
App::new()
|
||||
.middleware(
|
||||
middleware::DefaultHeaders::new().header("X-Version", "0.2"),
|
||||
)
|
||||
.middleware(middleware::Compress::default())
|
||||
.resource("/resource1/index.html", |r| r.get(index))
|
||||
.service(
|
||||
"/resource2/index.html",
|
||||
Resource::new()
|
||||
.middleware(
|
||||
middleware::DefaultHeaders::new()
|
||||
.header("X-Version-R2", "0.3"),
|
||||
)
|
||||
.default_resource(|r| r.to(|| Response::MethodNotAllowed()))
|
||||
.method(Method::GET, |r| r.to_async(index_async)),
|
||||
)
|
||||
.service("/test1.html", Resource::new().to(|| "Test\r\n"))
|
||||
.service("/", Resource::new().to(no_params)),
|
||||
)
|
||||
})
|
||||
.unwrap()
|
||||
.workers(1)
|
||||
.start();
|
||||
|
||||
let _ = sys.run();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue