본문 바로가기

에러 모음집12

SpringBoot Could not find acceptable representation(Error: Request failed with status code 406) ❌ 에러 메세지 org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation ✔ 해결 방법 Getter를 지정해줘야 한다. 핸들러가 클라이언트의 요청을 Type형식으로 응답하지 않아 발생하는 에러였다. 기존 코드 @Builder public class SignupResponse { private String msg; } 변경된 코드 @Builder @Getter public class SignupResponse { private String msg; } 2023. 1. 8.
[JAVA] java.util.regex.PatternSyntaxException: Illegal repetition ❌문자열에서 특정한 특수문자 제거하는 과정에서 발생한 오류입니다. String arr[] = s.split("{"); // Error /* Exception in thread "main" java.util.regex.PatternSyntaxException: Illegal repetition { at java.util.regex.Pattern.error(Pattern.java:1957) at java.util.regex.Pattern.closure(Pattern.java:3159) at java.util.regex.Pattern.sequence(Pattern.java:2136) at java.util.regex.Pattern.expr(Pattern.java:1998) at java.util.regex.P.. 2022. 7. 7.
[Spring] ❌Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Vscode | SpringBoot | Gradle 환경 ❌Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. ✅ applicatoin.properties 파일에 DB 정보 등록하기 spring.datasource.url=jdbc:mysql://{127.0.0.1:PORT}/{DB이름} spring.datasource.username={사용자이름} spring.datasource.password={비밀번호} spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver spring.jpa.hibernate.dd.. 2022. 6. 3.
[Django] ❌UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 0-1: invalid continuation byte ❌ UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 0-1: invalid continuation byte ✅ 터미널에 export PYTHONIOENCODING="UTF-8"; ❌django.db.utils.DatabaseError: database disk image is malformed ✅ 장고 개발을 하다보면 db를 갈아 엎어야하는일이 가끔 존재하는데 장고field들을 건들이지 않고 그대로 존재하면 python manage.py makemigrations python manage.py migrate로 버전별로 생성이 가능하지만.. 가끔은 모든 db내용을 삭제 할 필요가 생기는 경우가 있다.. 나같은 경우는 db를 3번째 갈아 엎.. 2022. 6. 3.
[Spring] ❌ No goals have been specified for this build (Maven) 예제 프로젝트 실행을 위해 Run을 시도했더니 아래와 같은 에러가 발생했다. No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format : or :[:]:. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-t.. 2022. 6. 3.
[Spring] ❌Maven Plugin 에러 ❌ 에러 사항 org.apache.maven.plugins:maven-jar-plugin:pom:2.4 failed to transfer from https://repo.maven.apache.org/maven2 during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.apache.maven.plugins:maven-jar-plugin:pom:2.4 from.. 2022. 6. 2.