해결된 질문
작성
·
441
0
converter-form.html을 아래와 같이 작성
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
th:field <input type="text" th:field="${ipPort}"><br/>
</form>
</body>
</html>
converterForm을 아래와 같이 작성
@GetMapping("/converter/edit")
public String converterForm(Model model) {
IpPort ipPort = new IpPort("127.0.0.1", 8080);
model.addAttribute("ipPort", ipPort);
return "converter-form";
}
위와 같이 작성하고 실행하면,
ipPort값이 출력이 되어야 할 것 같은데
1. 아래와 같이 입력창 안에 아무 값도 나오지 않는 이유가 무었인지 궁금합니다.
2. 혹시 th:object="${form}"을 안쓰면 입력창 안에 텍스트가 나오게 할 수 없는 건가요?