2021-08-03 17:00:21 +02:00
|
|
|
//! Run with
|
|
|
|
|
//!
|
|
|
|
|
//! ```not_rust
|
2021-08-18 00:49:01 +02:00
|
|
|
//! cargo run -p example-global-404-handler
|
2021-08-03 17:00:21 +02:00
|
|
|
//! ```
|
|
|
|
|
|
|
|
|
|
use axum::{
|
2021-10-24 22:05:16 +02:00
|
|
|
handler::Handler,
|
2021-08-21 12:02:50 +02:00
|
|
|
http::StatusCode,
|
|
|
|
|
response::{Html, IntoResponse},
|
2021-10-24 22:05:16 +02:00
|
|
|
routing::get,
|
2021-08-19 22:37:48 +02:00
|
|
|
Router,
|
2021-08-03 17:00:21 +02:00
|
|
|
};
|
|
|
|
|
use std::net::SocketAddr;
|
|
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
|
async fn main() {
|
2021-08-05 05:25:03 -04:00
|
|
|
// Set the RUST_LOG, if it hasn't been explicitly defined
|
2021-09-12 18:39:43 +03:00
|
|
|
if std::env::var_os("RUST_LOG").is_none() {
|
2021-08-18 00:49:01 +02:00
|
|
|
std::env::set_var("RUST_LOG", "example_global_404_handler=debug")
|
2021-08-05 05:25:03 -04:00
|
|
|
}
|
2021-08-05 20:43:03 +03:00
|
|
|
tracing_subscriber::fmt::init();
|
2021-08-03 17:00:21 +02:00
|
|
|
|
|
|
|
|
// build our application with a route
|
2021-08-19 22:50:42 +02:00
|
|
|
let app = Router::new().route("/", get(handler));
|
|
|
|
|
|
|
|
|
|
// make sure this is added as the very last thing
|
|
|
|
|
let app = app.or(handler_404.into_service());
|
2021-08-03 17:00:21 +02:00
|
|
|
|
|
|
|
|
// run it
|
|
|
|
|
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
|
|
|
|
|
tracing::debug!("listening on {}", addr);
|
2021-08-04 15:38:51 +02:00
|
|
|
axum::Server::bind(&addr)
|
2021-08-03 17:00:21 +02:00
|
|
|
.serve(app.into_make_service())
|
|
|
|
|
.await
|
|
|
|
|
.unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 00:04:15 +02:00
|
|
|
async fn handler() -> Html<&'static str> {
|
|
|
|
|
Html("<h1>Hello, World!</h1>")
|
2021-08-03 17:00:21 +02:00
|
|
|
}
|
|
|
|
|
|
2021-08-21 12:02:50 +02:00
|
|
|
async fn handler_404() -> impl IntoResponse {
|
|
|
|
|
(StatusCode::NOT_FOUND, "nothing to see here")
|
2021-08-03 17:00:21 +02:00
|
|
|
}
|