일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- @Entity
- RFC723x
- 네이버로그인API
- 매핑정보가없는필드
- anyMatch
- org.apache.ibatis.binding.BindingException
- gitreset
- 멱등활용
- HTTPMESSAGE
- gitrevert
- 캐쉬가능
- 무상태프로토콜
- 김영한JPA
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- Invalid bound statement (not found)
- DB방언
- 데이터베이스 방언
- fixedDelay
- Git
- 네이버 연결된 서비스
- HTTP3
- hibernate.dialect
- @Table
- KAKAOLOGINAPI
- SpringBoot
- initialDelay
- http
- 자바ORM표준프로그래밍
- JPA
- Transaction not successfully started
Archives
- Today
- Total
목록@ModelAttribute (1)
twocowsong
@ModelAttribute, @PathVariable, @RequestBody
프론트에서 form태그 또는 url로 서버까지 데이터를 전송하고 Controller에서 받은 데이터와 선언된 객체에 데이터맵핑에는 여러가지 편리한 어노테이션 존재합니다. (객체 데이터 맵핑원리가 궁금하면 Argument Resovler를 찾아보시면됩니다.) 컨트롤러에서 객체에 쉽게 데이터를 맵핑할수있는 어노테이션을 설명드리겠습니다. @Getter @Setter public class Car{ private int speed; } 맵핑하기위한 Car객체입니다. @ModelAttribute @ResponseBody @RequestMapping("/test") public String modelAttributeTest(@ModelAttribute Car car) { log.info("car speed : " ..
IT/SpringBoot
2022. 1. 18. 21:36