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
- bytebuddyinterceptor
- websecurityconfiguration
- springboot
- Swagger
- java.lang.nosuchmethoderror
- jsonignore
Archives
- Today
- Total
목록db (2)
NOT FOUND

이스케이프 문자가 \로 설정되어 있어서 그랬던 거였다.이스케이프 문자를 변경해주고 해결.
db
2024. 1. 29. 18:00
Mongoose find method is not working
async findByCategoryCode(category: string, page: number, size: number) { console.log(category); const test = await this.model.find({categoryCode: "C-1"}).explain().exec(); console.log(test); const test2 = await this.model.aggregate([ { $match: { categoryCode: "C-2" } } ]).exec(); console.log(test2); return this.model.find({'..
db
2023. 8. 29. 17:11