스트링 변경

This commit is contained in:
daniel LEE 2023-10-23 23:49:42 +09:00
parent 9665fc0e26
commit 9022084a48
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ public class JSPController {
@GetMapping("/hello")
public String home(Model model) {
System.out.println("home controller start");
model.addAttribute("name", "나의 이름은 이진기입니다.");
model.addAttribute("name", "111111.");
return "hello";
}