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
- 알고리즘
- 동적계획법과최단거리역추적
- issue
- Python
- BAEKJOON
- Vue
- cos pro 1급
- 안드로이드스튜디오
- DFS와BFS
- django
- AndroidStudio
- 백준
- android
- codingtest
- 동적계획법
- cos
- 코테
- Algorithm
- 파이썬
- cos pro
- C++
- 개발
- Flutter
- DART
- 코드품앗이
- DFS
- 분할정복
- vuejs
- 코딩테스트
- 안드로이드
Archives
- Today
- Total
목록TroubleShooting/Spring Issue (2)
Development Artist
[Issue, Spring] Type definition error: [simple type, class com.test.user.domain.dto.UserJoinRequest]
이슈 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
[Issue, Spring] Unable to start web server, jakarta.servlet.http.HttpSessionContext
이슈 토비의 스프링을 공부하던 중, 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