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 | 29 | 30 |
Tags
- isNotEmpty
- MariaDB
- DBMS
- spring
- IntelliJ
- Linux
- github
- mysql
- Python
- 명령어
- SQL
- 티스토리챌린지
- 자바
- PostgreSQL
- 호이스팅
- oracle
- 404error
- docker
- 리눅스
- iBatis
- analytics4
- java
- springboot
- git
- pem
- Javascript
- mssql
- Kibana
- pandas
- 오블완
Archives
- Today
- Total
hanker
@ModelAttribute 어노테이션 본문
반응형
@ModelAttribute 어노테이션
여러가지 코드를 보면 컨트롤러에서 파라미터를 받는 부분에 @ModelAttribute 어노테이션이 붙어 있는걸 볼 수 있다.
이 어노테이션을 사용하면 VO, DTO 클래스에 정의된 값을 파라미터로 받을 수 있는데, 이는 view page에서 폼데이터를 가져올 때 많이 사용한다.
또한 생략도 가능하다.
@RequestMapping(value = "/actionLogin.do")
public String actionLogin(@ModelAttribute("loginVO") LoginVO loginVO, HttpServletRequest request, ModelMap model) throws Exception {
}
@RequestMapping(value = "/actionLogin.do")
public String actionLogin(LoginVO loginVO, HttpServletRequest request, ModelMap model) throws Exception {
}
위 코드와 아래코드의 받아오는 값은 같다.
반응형
'SPRING' 카테고리의 다른 글
javax.persistence.TransactionRequiredException: Executing an update/delete query (0) | 2024.09.04 |
---|---|
[Intellij] Entity Class 생성 (1) | 2024.09.03 |
Spring - WebMvcConfigurerAdapter' is deprecated (0) | 2021.11.10 |
Java - 웹 크롤링 이미지 파일 다운로드(Web Crawling img Download) - jsoup (2) (0) | 2021.11.09 |
Java - 웹 크롤링(Web Crawling) - jsoup (1) (0) | 2021.11.09 |