[Java/오류노트] Solved - Swagger : CORS, Network Failure, URL scheme must be "http" or "https" for CORS request.
·
Java/오류노트
해당 글에서는 Swagger UI 내에서 발생한 CORS 에러에 대해 이를 해결하는 방법에 대해 알아봅니다💡 [참고] CORS에 대한 이해 및 Swagger 활용방법에 대해 궁금하시면 아래의 글을 참고하시면 도움이 됩니다.분류주제링크CORS 이해 및 활용교차 출처 리소스 공유 : CORS(Cross Origin Resource Sharing) 이해하기https://adjh54.tistory.com/586CORS 이해 및 활용Spring Boot 환경에서 CORS(Cross Origin Resource Sharing) 이해하고 활용하기 -1https://adjh54.tistory.com/587Swagger 활용Spring Boot 2.x 환경에서 Swagger 이해하고 적용하기 : SpringDoc op..
[Java/오류노트] Solved - Failed message 1: org.eclipse.angus.mail.smtp.SMTPSendFailedException: 554 5.7.1 The sender address is unauthorized - nsmtp
·
Java/오류노트
해당 글에서는 Java 언어 기반 Spring Boot Mail을 사용 중에 발생하는 오류에 대해 해결 방법에 대해 알아봅니다. 1) 문제점💡문제점- Spring Boot Mail을 활용하여 메일 전송을 테스트 하는 중에 아래와 같은 오류가 발생하였습니다.- Failed message 1: org.eclipse.angus.mail.smtp.SMTPSendFailedException: 554 5.7.1 The sender address is unauthorized - nsmtp    2) 해결방법💡 해결방법- Gmail의 SMTP 서버를 활용할때는 발생하지 않던 오류였으나, Naver를 사용하는 경우 발생하는 문제였습니다.- 관련 글을 찾아보니 Gmail에서는 보내는 사람(from)을 지정하지 않아도 ..
[Java/오류노트] Solved - org.springframework.http.converter.HttpMessageConversionException
·
Java/오류노트
해당 글에서는 Java 내에서 발생하는 오류에 대한 해결 방법에 대해 알아봅니다.1) 문제점💡 문제점- API 통신을 수행 시 아래와 같은 메시지와 함께 DateInfoDto라는 곳에서 문제가 발생하였습니다.- 이는 SQL문이 수행되고 Java 객체와 매핑되는 과정에서 해당 SQL 컬럼 데이터와 Java 객체 간의 매핑이 되지 않아 발생하는 문제였습니다.💡 오류 메시지- org.springframework.http.converter.HttpMessageConversionException  1. 문제 지점 확인💡 문제 지점 확인 : XXXMapper.xml- 아래와 같이 Mybatis 내의 SQL문 자체에서는 문제가 없이 쿼리가 수행됨을 확인하였습니다.  💡 문제 지점 확인 : DTO- DTO 내에..
[Java/오류노트] Solved - org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL
·
Java/오류노트
Spring Boot JPA 기반으로 프로젝트를 수행하는 도중에 발생하는 오류에 대해 알아보고 해결책을 알아봅니다.1) 문제점💡 문제점- Spring Boot JPA를 테스트하는 도중에 application.properties 값을 spring.jpa.hibernate.ddl-auto= create로 해둔 상태에서 발생한 문제점이었습니다.💡 오류메시지 - org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "drop table if exists xxxx" via JDBC Statement- 해당 문제는 하단의 오류에서 확인해 볼 수 있듯이 Cannot drop table 'tb_board' referenced by..
[Java/오류노트] Solved - Could not create plugin of type class org.apache.logging.log4j.core.async.AsyncLoggerConfig for element AsyncLogger: java.lang.NoClassDefFoundError: com/lmax/disruptor/EventFactory java.lang.NoClassDefFoundError: com/lmax/di..
·
Java/오류노트
해당 글에서는 Log4j2에서 비동기 로깅에 대해 설정하는 과정 중에 발생하는 오류에 대한 해결한 방법에 대해 공유합니다. 1) 문제점💡 문제점- Log4j2에서 ‘비동기 로깅’과 관련되어 테스트를 하는 중에 아래와 같은 문제가 발생하였습니다.Could not create plugin of type class org.apache.logging.log4j.core.async.AsyncLoggerConfig for element AsyncLogger: java.lang.NoClassDefFoundError: com/lmax/disruptor/EventFactory java.lang.NoClassDefFoundError: com/lmax/disruptor/EventFactory- 해당 문제는 AsyncLog..
[Java/오류노트] Solved - Annotation-specified bean name 'xxxController' for bean class [xxxController] conflicts with existing, non-compatible bean definition of same name and class [xxxController]
·
Java/오류노트
해당 글에서는 동일한 이름의 Controller를 생성하였을 때 발생하는 오류와 이에 대해 해결하는 방법에 대해 알아봅니다.  1) 문제점💡 문제점- 아래와 같은 문제가 발생하였습니다.Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'xxxController' for bean class [xxxController] conflicts with existing, non-compatible bean definition of same name and class [xxxController]- 해당 오류는 동일한 이름을 가진 두 개의 빈 정의가 서로 다른..
[Java/오류노트] Solved - org.apache.ibatis.binding.BindingException : Type interface xxx is not known to the MapperRegistry.
·
Java/오류노트
해당 문제에서는 Mybatis에서 발생하는 BindingException에 대해 해결 방법을 알아봅니다.1) 문제점💡 문제점- 최근 프로젝트에서 패키지를 재구성하였습니다. - 이에 따라 IDE 툴 내에서 자동 Refactor가 되었는 줄 알았으나 아래와 같은 문제가 발생하였습니다.org.apache.ibatis.binding.BindingException : Type interface xxx is not known to the MapperRegistry.- 해당 문제는 말 그대로 **Mapper로 구성한 xxx 경로에 있는 파일이 MapperRegistry에 등록되지 않은 문제입니다. - 다시 말해 Mapper Resource 세팅의 경로가 문제가 생겨서 이를 수정 해줘야 합니다.org.apache.i..
[Java/오류노트] Solved - No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.2.1 was found.
·
Java/오류노트
해당 글에서는 Spring Boot 프로젝트를 새로 구성하고 빌드하는 과정에서 발생하는 오류에 대해서 확인하고 해결하는 방법에 대해 알아봅니다.1) 문제점💡 문제점- 해당 문제가 발생하는 환경은 Spring Boot 3.2.1 버전을 최초 생성하여 서버를 빌드하는 과정에서 Gradle에서 발생하는 문제로 아래와 같은 문제점이 발생하였습니다.- 해당 문제점을 확인해보면 프로젝트의 구성이 java 8로 구성이 되어 있어서 java 17로 변경을 하는것을 권장한다는 문제였습니다. > Could not resolve all files for configuration ':classpath'. > Could not resolve org.springframework.boot:spring-boot-gradle-p..
[Java/오류노트] SonarLint: integer number too large
·
Java/오류노트
해당 글에서는 integer number too large 오류에 대해 해결방법에 대해 알아봅니다.1) 문제점: Integer number too large 1. Integer number too large💡 Integer number too large- Java에서 정수 값이 표현 가능한 범위를 초과했을 때 발생하는 오류입니다.- int와 long은 정해진 비트 수로 값을 표현할 수 있습니다. 만약 이 비트 수를 초과하는 값을 사용하면 이 오류가 발생합니다.  💡 [참고] int(=Integer)와 long(=Long)의 최소/최대 범위입니다.타입최소 범위최대 범위int(=Integer)-2,147,483,648+2,147,483,647long(=Long)-9,223,372,036,854,775,8..
[Java/오류노트] Solved - Cause: superclass access check failed: class butterknife.compiler.ButterKnifeProcessor$RScanner
·
Java/오류노트
해당 글에서는 Android Studio내에서 발생하는 오류에 대해 이를 해결하는 방법에 대해서 알아봅니다.1) 문제점💡문제점Cause: superclass access check failed: class butterknife.compiler.ButterKnifeProcessor$RScanner (in unnamed module @xxx) cannot access class com.sun.tools.javac.tree.TreeScanner (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.tree to unnamed module @xxx- 해당 문제는 안드로이드 빌드를 수행하였을 경우 위와 같은..