일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- axios
- Spring
- EC2
- Express
- linux
- React
- MUI
- Github Actions
- nodejs
- MongoDB
- docker
- 500
- github
- javascript
- Java
- ngrok
- AWS EC2
- macbook
- AWS
- webhook
- TypeScript
- RDS
- js
- Troubleshooting
- Jenkins
- springboot
- error
- fastapi
- python
- deploy
- Today
- Total
목록500 (2)
BEAT A SHOTGUN
❌ERROR When I tried to test a method, I saw Ambiguous handler methods mapped for '/api/v1/post/***' 500 ERROR THE CAUSE Because I had multiple methods that have using the same url. ✅SOLUTION Check the Controller. You can find the duplicated URL and change it. END EASY😉 LET'S BE CAREFUL NOT TO BE STUPID!
ERROR ❌ 조금 전(2분 전) 403 ERROR 를 해결하니 500 ERROR 가 나왔다. 403 ERROR ON USER RESISTRATION IntelliJ 터미널에는 cannot deserialize from object value 라는 error 문구가 출력되었다. THE CAUSE 내가 만든 User 모델에 빈 생성자 가 없었다. SOLUTION ✅ 첫번째 방법 // User.java // lombok 을 사용한다면 "@NoArgsConstructor" annotation 추가 @NoArgsConstructor ✅ public class User{ ...또는 OR 두번째 방법 // User.java // lombokr 을 사용하지 않는다면 "빈 생성자" 만들어주기 public class U..