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 | 31 |
Tags
- Git
- jdbc connector
- git rebase -i
- 참조무결성
- git reflog
- programmers
- 1452
- 제약 조건
- Cannot delete or update a parent row: a foreign key constraint fails
- API 설계
- 23000
- kafkaconnect
- Query String
- kafka-connect
- Path Variable
- Pagination Optimization
- 1450
- 페이지네이션 최적화
- constraint fails
- 페이지네이션
- kafka connect
- Invalid character found in method name
- Cannot add or update a child row: a foreign key constraint fails
- Late row lookup
- event loop
- code --no-sandbox
- foreign key constraint fails
- debezium
- 문자열 검증
- reflog
Archives
- Today
- Total
목록취준 (90)
Kawaii_Jordy
[flaky test]
https://m.blog.naver.com/PostView.naver?blogId=genycho&logNo=221166571265&proxyReferer=https%3A%2F%2Fwww.google.com%2F
취준/일반 개발 지식
2021. 6. 3. 15:04
[Mysql, Maria] TIMEDIFF with option
https://extbrain.tistory.com/78
취준/DB
2021. 6. 3. 09:46
[Sequelize] bind
https://ithub.tistory.com/276
취준/DB
2021. 6. 2. 11:37
[Type Guard] type에 대한 확실한 정의가 필요
제가 제대로 표현을 못했네요. 구체적인 예시로 보는게 괜찮을 것 같습니다. 지금 서버에 GET /log/rooms?limit%5BtoString%5D=123 을 요청하면 TypeError: req.query.limit?.toString is not a function 가 납니다. 여기서 %5B와 %5D는 [] 의 urlencoded 된 표현입니다. 이 때 첫 줄에서 console.log(req.query)를 찍어보면 { limit: { toString: '123' } } 이 나옵니다. 이 때 req.query.limit의 값은 string type인 '123'이 됩니다. 해당 버그를 고쳐주세요. 서버가 클라이언트에게 자신의 에러 stack을 보내는 것은 보안적으로 이슈가 될 수 있습니다. https://..
취준/API 설계
2021. 5. 31. 10:01