Files
axum/examples/global-404-handler/src/main.rs
T

46 lines
1.2 KiB
Rust
Raw Normal View History

2021-08-03 17:00:21 +02:00
//! Run with
//!
//! ```not_rust
//! cargo run -p example-global-404-handler
2021-08-03 17:00:21 +02:00
//! ```
use axum::{
2021-08-21 12:02:50 +02:00
http::StatusCode,
response::{Html, IntoResponse},
routing::get,
Router,
2021-08-03 17:00:21 +02:00
};
2022-03-06 12:37:00 +01:00
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
2021-08-03 17:00:21 +02:00
#[tokio::main]
async fn main() {
2022-03-06 12:37:00 +01:00
tracing_subscriber::registry()
.with(
tracing_subscriber::EnvFilter::try_from_default_env()
.unwrap_or_else(|_| format!("{}=debug", env!("CARGO_CRATE_NAME")).into()),
)
2022-03-06 12:37:00 +01:00
.with(tracing_subscriber::fmt::layer())
.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));
2021-10-25 20:49:39 +02:00
// add a fallback service for handling routes to unknown paths
2022-08-17 17:13:31 +02:00
let app = app.fallback(handler_404);
2021-08-03 17:00:21 +02:00
// run it
let listener = tokio::net::TcpListener::bind("127.0.0.1:3000")
2021-08-03 17:00:21 +02:00
.await
.unwrap();
tracing::debug!("listening on {}", listener.local_addr().unwrap());
axum::serve(listener, app).await.unwrap();
2021-08-03 17:00:21 +02:00
}
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
}