일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- gitreset
- HTTP3
- hibernate.dialect
- Git
- 매핑정보가없는필드
- DB방언
- 네이버로그인API
- 멱등활용
- RFC723x
- HTTPMESSAGE
- 네이버 연결된 서비스
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- 데이터베이스 방언
- JPA
- 캐쉬가능
- org.apache.ibatis.binding.BindingException
- http
- 자바ORM표준프로그래밍
- @Entity
- Transaction not successfully started
- gitrevert
- KAKAOLOGINAPI
- 무상태프로토콜
- fixedDelay
- initialDelay
- @Table
- anyMatch
- Invalid bound statement (not found)
- 김영한JPA
Archives
- Today
- Total
목록쿠키 (1)
twocowsong
[모든 개발자를 위한 HTTP 웹 기본 지식 - 28]
쿠키 Set-Cookie: 서버에서 클라이언트로 쿠키 전달(응답) Cookie: 클라이언트가 서버에서 받은 쿠키를 저장하고, HTTP 요청시 서버로 전달 HTTP는 무상태 프로토콜입니다. 서버에서는 클라이언트의 상태를 가지고있지않습니다. 서버가 클라이언트의 상태를 저장하기위해서 세션과 쿠키가있습니다. 쿠키의 경우 클라이언트가 서버에게 요청 후 서버는 해당 값으로 쿠키를 생성시켜 웹브라우저 쿠키저장소에 저장합니다. @GetMapping("/login") @ResponseBody public void login(HttpServletResponse response) throws Exception{ Cookie createCookie = new Cookie("userName", "홍길동"); createCook..
IT/HTTP
2022. 1. 29. 23:44