mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-21 16:19:42 +00:00
11 lines
252 B
Groovy
11 lines
252 B
Groovy
@Grab("org.thymeleaf:thymeleaf-spring3:2.0.16")
|
|
@Controller
|
|
class Example {
|
|
|
|
@RequestMapping("/")
|
|
public String helloWorld(Map<String,Object> model) {
|
|
model.putAll([title: "My Page", date: new Date(), message: "Hello World"])
|
|
return "home";
|
|
}
|
|
|
|
} |