mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-21 07:49:14 +00:00
13 lines
243 B
Groovy
13 lines
243 B
Groovy
package app
|
|
|
|
@Grab("thymeleaf-spring6")
|
|
@Controller
|
|
class Example {
|
|
|
|
@RequestMapping("/")
|
|
public String helloWorld(Map<String,Object> model) {
|
|
model.putAll([title: "My Page", date: new Date(), message: "Hello World"])
|
|
return "home"
|
|
}
|
|
}
|