Spring에서 406 Not Acceptable 상황 해결: @Getter가 없는 경우 JSON 변환 실패

회원가입을 처리하는 서비스와 컨트롤러를 만든 후 curl 명령어로 POST 요청을 통해 회원가입 테스트를 진행했지만, 상태 코드가 406 Not Acceptable로 반환되는 상황이었다.데이터베이스에 값은 잘 저장되는 것이 확인되었으나, 상태 코드가 200 OK가 아닌

약 6시간 전
·
0개의 댓글
·

git add시 LF와 CRLF warning 문제

초기 설정을 전체 add 하고 git에 commit push 하기 위해 나타난 warning 문제warning: LF will be replaced by CRLF in file특정 파일의 LF 타입이 CRLF로 변경될 것이라는 의미이다.여기서 나는 두가지 의문점이 생겼

약 12시간 전
·
0개의 댓글
·

Spring 인메모리 인증 사용: Using generated security password

Using generated security password: e8f6be59-d856-4bad-bab3-bafdd7b387bbSpring Security에서 "Using generated security password" 메시지는 기본적으로 인메모리 인증을 설정했을

약 12시간 전
·
0개의 댓글
·
post-thumbnail

IntelliJ 프로젝트 생성 시 Database 연결: Database(Mysql/MariaDB)와 user 생성 후 권한 부여하기

mysql -u root -pcreate database "database명"; create user 'user명'@'127.0.0.1' identified by 'password';'database명'@'접속위치'127.0.0.1으로 할경우는 localhost, 내부

약 12시간 전
·
0개의 댓글
·
post-thumbnail

LoggingFailureAnalysisReporter: Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.

Spring Boot에서 Database 설정하는데 에러가 난 상황 데이터베이스 url 미설정 -> application.yml 적절한 JDBC 드라이버 클래스 찾기 실패 -> build.gradle사실 이 오류의 근본적인 원인은 Spring Boot의 자동 구성(

약 12시간 전
·
0개의 댓글
·