Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- http
- 김영한
- 스프링
- Proxy
- kotlin
- jpa
- Greedy
- JPQL
- 그리디
- 스프링 핵심 원리
- AOP
- 백준
- 스프링 핵심 기능
- 인프런
- springdatajpa
- JDBC
- pointcut
- transaction
- 알고리즘
- spring
- SpringBoot
- db
- QueryDSL
- Android
- Servlet
- 자바
- Exception
- java
- Spring Boot
- Thymeleaf
Archives
- Today
- Total
목록select box (1)
개발자되기 프로젝트
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/AKWaA/btrfREAJHMc/ClD5qMCRoiVTk9bDk3X1rK/img.png)
1. 셀렉트 박스 여러 선택지 중 하나를 선택하는 경우. 2. select 박스 추가 배송 방식 빠른 배송 일반 배송 느린 배송 셀렉트 박스로 하나만 선택이 가능. 3. Controller 자바 객체 사용. @ModelAttribute("deliveryCodes") public List deliveryCodes(){ List deliveryCodes = new ArrayList(); deliveryCodes.add(new DeliveryCode("FAST", "빠른 배송")); deliveryCodes.add(new DeliveryCode("NORMAL", "일반 배송")); deliveryCodes.add(new DeliveryCode("SLOW", "느린 배송")); return deliveryCod..
인프런/[인프런] 스프링 MVC 2
2021. 9. 23. 23:57