일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SpringBoot
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- RFC723x
- 멱등활용
- 자바ORM표준프로그래밍
- Invalid bound statement (not found)
- @Table
- HTTPMESSAGE
- 매핑정보가없는필드
- gitreset
- initialDelay
- gitrevert
- DB방언
- 무상태프로토콜
- 데이터베이스 방언
- KAKAOLOGINAPI
- 네이버 연결된 서비스
- 캐쉬가능
- 네이버로그인API
- fixedDelay
- Transaction not successfully started
- anyMatch
- @Entity
- 김영한JPA
- hibernate.dialect
- JPA
- org.apache.ibatis.binding.BindingException
- HTTP3
- Git
- http
Archives
- Today
- Total
목록@controller (1)
twocowsong
@RestController @Controller
@Slf4j @Controller public class Test1Controller { @GetMapping("/main") public String init() { return "/index"; } } 단순 컨트롤러입니다. @Controller로 해당 클래스를 등록해야지 Url을 맵핑이 원할하게 작동됩니다. 그렇지만 우리는 일반 컨트롤러와 API컨트롤러를 분리하여 작업하기도 합니다. 일반 컨트롤러와 API컨트롤러의 가장 큰차이점은 리턴 방식이 다르다는것! 일반컨트롤러는 viewresolver에 의해 html페이지가 리턴되어버립니다. @Slf4j @RestController public class Test1Controller { @GetMapping("/main") public String init()..
IT/SpringBoot
2022. 1. 24. 21:50