spring-boot/spring-boot-project/spring-boot-cli/samples/ui.groovy

13 lines
243 B
Groovy
Raw Normal View History

2022-01-06 21:28:05 +08:00
package app
@Grab("thymeleaf-spring6")
2022-01-06 21:28:05 +08:00
@Controller
class Example {
@RequestMapping("/")
public String helloWorld(Map<String,Object> model) {
model.putAll([title: "My Page", date: new Date(), message: "Hello World"])
return "home"
}
}