Skip to content

Commit

Permalink
fix: typo and improve description
Browse files Browse the repository at this point in the history
  • Loading branch information
zaerald committed Dec 29, 2021
1 parent ada24c1 commit 60cac8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ settings, other beans, and various property settings.
such as setting up a `DispatcherServlet`. Spring Boot adds it automatically when it sees
`spring-webmvc` on the classpath.
- `@ComponentScan`: Tells Spring to look for other components, configurations, and
services in the the `com.example.testingweb` package, letting it find the
`HelloController` class.
services in the package where your annotated `TestingWebApplication` class resides
(`com.example.testingweb`), letting it find the `com.example.testingweb.HelloController` class.

The `main()` method uses Spring Boot's `SpringApplication.run()` method to launch an
application. Did you notice that there is not a single line of XML? There is no `web.xml`
Expand Down

0 comments on commit 60cac8b

Please sign in to comment.