This Spring Boot web application display random Chuck norris jokes on the index.
- Create Spring Boot Project From Spring Initializr 1.1. Only Select 'Web' and 'Thymeleaf' dependencies
- Add Dependency : group : guru.springframework, name: 'chuck-norris-for-actuator', version : '0.0.2'
- Create Service to return joke string from class guru.springframework.norris.chuck.ChuckNorrisQuotes.getRandomQuote()
- Create MVC Jokes controller
- Map context root ("/","") to jokes view
- Add Joke text to joke property of Model
- Return view name of chucknorris
- Create Thymeleaf view for chucknorris