반응형
요즘에 업무가 너무 바빠서 코드로 대체함
controller
//코드값 조회 후 화면에 데이터 전달
List<CommonCdVo> tList = commonService.selectCommonDtlCodeList("T");
model.addAttribute("tList", tList);
html
<select name="cd">
<option value="">전체</option>
<option th:each="list : ${tList}" th:value="${list.dtlCd}" th:utext="${list.dtlCdDesc}"></option>
</select>
th:value는 서버로 전송할 value값이 세팅되고 th:utext는 화면에 보여질 텍스트가 세팅된다.
반응형
'IT > development' 카테고리의 다른 글
[thyemeleaf] form 검색값 유지 (0) | 2023.04.26 |
---|---|
[thyemeleaf] get 방식 parameter값 붙이기 (0) | 2023.04.26 |
INSERT/UPDATE template(feat. 엑셀 CONCATENATE) (0) | 2023.03.05 |
[java] list의 null 체크(ObjectUtils.isEmpty()) (0) | 2023.02.12 |
[spring] vo와 multipartFile 동시에 서버로 전송(feat.@RequestPart) (2) | 2023.02.08 |