일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- error
- oracle
- MySQL
- IntelliJ
- PostgreSQL
- STS
- SpringBoot
- git
- 문서
- AJAX
- spring
- 오픈소스
- Exception
- jpa
- Python
- Source
- Eclipse
- MSSQL
- 설정
- JDBC
- maven
- Open Source
- JavaScript
- Spring Boot
- Docker
- myBatis
- Core Java
- Thymeleaf
- Tomcat
- ubuntu
- Today
- Total
목록Exception (56)
헤르메스 LIFE
잘 실행된던 Spring Boot 가 갑자기 Exception 을 토해냈습니다.ChatGPT 에 물어봤더니..1. MyBatis 설정 확인2. SqlSessionFactory가 여러개인 경우3. MyBatis 매퍼 인터페이스 및 XML 파일 확인4. 의존성 주입 문제 확인5. 데이터베이스 설정 확인등의 설정문제를 예시로 드는데...장시간에 걸쳐 문제를 확인하고 검토했지만, 문제가 없었습니다.몇 시간을 확인한 결과.. 간단한 오류였습니다.DTO Alias 중복이 문제 였습니다.@Alias("Comm132DTO")DTO 를 복사해서 붙여넣다 보니, 이러한 오류가 발생하네요. ㅠ.ㅠ
개발환경을 업그레이드 하던 중 아래와 같은 오류가 발생하였습니다.JDK 11 -> JDK 17Spring Boot 2.7.18 -> Spring Boot 3.2.4WARN [org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.logException:247] - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource swagger-ui/index.html.]개발환경Tools : STS 4.22.1.RELEASEJDK : zulu17.72.19-jdk11.0.23Framework : Sp..
개발환경을 업그레이드 하던 중 아래와 같은 오류가 발생하였습니다.JDK 11 -> JDK 17Spring Boot 2.7.18 -> Spring Boot 3.2.4java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter개발환경Tools : STS 4.22.1.RELEASEJDK : zulu17.72.19-jdk11.0.23Framework : Spring Boot 3.2.4 & MyBatisDatabase : PostgreSQL 16.3Build : MavenDoc : SwaggerMybatis 버전도 같이 올려줘야 하는군요.pom.xml (JDK 11 의 경우) io.jsonwebtoken ..
개발 환경을 이쪽 저쪽 옮겨 다니다보니 이런 오류가 발생했습니다.Unable to load annotation processor factory 'M2_REPO/org/bgee/log4jdbc-log4j2/log4jdbc-log4j2-jdbc4/1.16/log4jdbc-log4j2-jdbc4-1.16.jar' for project XXXX저는 아래와 같은 방법으로 처리 했습니다.1. 프로젝트 > 우클릭 >> Properties >> Java Compiler >> Annotation Processing >> Factory Path오류가 나는 파일을 선택 후 "Remove" 하고 "Apply" 합니다.2. 프로젝트 > 우클릭 >> Maven >> Update Project
개발환경 JDK : Zulu JDK 17.0.10 SpringBoot 3.2.3 SpringBoot Eureka Client ( 현재 최신 버전 :4.1.0 ) Build Tools : Gradle 다음과 같은 오류가 발생하였습니다. com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server at com.netflix.discovery.shared.transport.decorator.RetryableEurekaHttpClient.execute(RetryableEurekaHttpClient.java:112) ~[eureka-client-2.0.1.jar:2.0.1] at com.net..
간만의 테스트 아래와 같은 오류가 발생되었습니다. Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.5/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle ..
NativeQuery 를 이용해서 삭제했는데, 아래와 같은 오류가 발생했습니다. could not extract ResultSet; nested exception is org.hibernate.exception.GenericJDBCException: could not extract ResultSet CommentRepository.java package octopus.bbs.comment.repository; import java.util.List; import javax.persistence.Tuple; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.spri..
요즘 JPA를 공부하고 있습니다. MyBatis 만 하다가, 개인적으로 공부를 진행하고 있습니다. 하다보니 막히고, 이해가 안되는 부분이 많네요. 그때마다 검색과 삽질로 해결하고 있습니다. 여기 그 삽질의 자취를 남겨봅니다. 개발환경 Spring Boot 2.7.9 H2 2.1.214 p6spy 1.8.1 slf4j 1.7.36 swagger2 2.6.1 lombok devtools postgresql INFO 23-03-24 23:26:689[restartedMain] springfox.documentation.spring.web.PropertySourcedRequestMappingHandlerMapping.initHandlerMethods[69]: - Mapped URL path [/v2/api-do..
개발환경 Spring Boot 2.7.9 H2 2.1.214 p6spy 1.8.1 slf4j 1.7.36 swagger2 2.6.1 lombok devtools postgresql JPA 아래의 오류는 JPA 개발환경에서 조회 후 값이 없을 경우 발생하는 오류입니다. WARN 23-03-18 11:23:622[http-nio-9090-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.logException[208]: - Resolved [java.util.NoSuchElementException: No value present] JPA 에서는 아래와 같이 해결할 수 있습니다. @Tra..
개발환경 : Spring Boot 2.7.9 Database : H2-2.1.214 JDK : 11.0.18 x64 JPA DEBUG 23-03-11 00:39:202[http-nio-9090-exec-1] octopus.backend.v1.controller.CodeMController.save[55]: - tCodeMDto :: TCodeMDto(pCd=null, pCdNm=null, useYn=null, rmk=null) DEBUG 23-03-11 00:39:206[http-nio-9090-exec-1] octopus.backend.v1.service.CodeService.save[37]: - tCodeMDto :: TCodeMDto(pCd=null, pCdNm=null, useYn=null, rm..