Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- codingtest
- 분할정복
- DFS
- 안드로이드스튜디오
- Python
- 코테
- 개발
- 코딩테스트
- cos pro
- Flutter
- 안드로이드
- DFS와BFS
- 파이썬
- android
- 동적계획법
- 동적계획법과최단거리역추적
- django
- docker
- issue
- BAEKJOON
- cos pro 1급
- vuejs
- 코드품앗이
- AndroidStudio
- DART
- C++
- Algorithm
- 알고리즘
- cos
- 백준
Archives
- Today
- Total
목록TroubleShooting/Spring Issue (2)
Development Artist

이슈 User 관련 회원가입 API를 만들고 테스트하는 중 API를 날리면 다음과 같이 Response가 오는 것을 확인. 해결 1안 또는 2안 중 채택하여 해결. 1. 해당 DTO의 생성자 생성 @AllArgsConstructor @Getter public class UserJoinRequest { private String userName; private String password; public UserJoinRequest() {} } 2. lombok을 사용한다면, @NoArgsConstructor 애노테이션 붙여준다. 원인 - 아래와 같이 UserJoinRequest의 생성자가 없어서 발생한 문제였다.
TroubleShooting/Spring Issue
2023. 9. 1. 16:56

이슈 토비의 스프링을 공부하던 중, Tomcat에서 Jetty로 변경하는 코드를 똑같이 썼음에도 다음과 이슈 발생. 2023-08-19T17:21:24.316+09:00 INFO 55221 --- [ main] j.s.helloboot.HellobootApplication : Starting HellobootApplication using Java 20.0.1 with PID 55221 (/Users/jeongmokhwang/jmcunst/study/spring-boot/helloboot/out/production/classes started by jeongmokhwang in /Users/jeongmokhwang/jmcunst/study/spring-boot/helloboot) 2023-08-19T17..
TroubleShooting/Spring Issue
2023. 8. 19. 18:53