feat: simple dev.sh script to launch development environment

This commit is contained in:
2025-11-08 12:49:03 +01:00
parent 5a7beabc9d
commit 8f39655da2
3 changed files with 25 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.GetMapping;
public class HomeController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello Thymeleaf!");
model.addAttribute("message", "Hello Thymeleaf!xxx");
return "home";
}
}

View File

@@ -7,7 +7,6 @@
</head>
<body>
<h1 class="bg-red-200" th:text="${message}">Placeholder message</h1>
<p>Test x</p>
<p>Test 2</p>
</body>
</html>