mirror of
https://github.com/actix/actix-web.git
synced 2025-02-06 14:22:21 +00:00
update guide
This commit is contained in:
parent
ca76dff5a7
commit
8dbbb0ee07
1 changed files with 4 additions and 3 deletions
|
@ -51,10 +51,11 @@ request handler with the application's `resource` on a particular *HTTP method*
|
|||
```
|
||||
|
||||
After that, the application instance can be used with `HttpServer` to listen for incoming
|
||||
connections. The server accepts a function that should return an `HttpHandler` instance:
|
||||
connections. The server accepts a function that should return an `HttpHandler` instance.
|
||||
For simplicity `server::new` could be used, this function is shortcut for `HttpServer::new`:
|
||||
|
||||
```rust,ignore
|
||||
HttpServer::new(
|
||||
server::new(
|
||||
|| App::new()
|
||||
.resource("/", |r| r.f(index)))
|
||||
.bind("127.0.0.1:8088")?
|
||||
|
@ -80,7 +81,7 @@ fn main() {
|
|||
# // If copying this example in show-all mode, make sure you skip the thread spawn
|
||||
# // call.
|
||||
# thread::spawn(|| {
|
||||
server::HttpServer::new(
|
||||
server::new(
|
||||
|| App::new()
|
||||
.resource("/", |r| r.f(index)))
|
||||
.bind("127.0.0.1:8088").expect("Can not bind to 127.0.0.1:8088")
|
||||
|
|
Loading…
Reference in a new issue