/* helloController */
@Controller
public class HelloController {
@GetMapping("hello")
public String hello(Model model){
model.addAttribute("data", "hello!!!");
return "hello"; //templete/hello.html을 찾아서 렌더링 해라
}
}
<body>
<p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p>
<!-- data는 model에서의 key 값에 해당 -->
</body>
C:\Users\User>cd C:\spring_study\hello-spring\hello-spring
gradlew build
C:\study2\hello-spring\build\libs>java -jar hello-spring-0.0.1-SNAPSHOT.jar