일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- MSSQL
- STS
- Source
- 문서
- git
- PostgreSQL
- Core Java
- myBatis
- Tomcat
- Open Source
- SpringBoot
- Python
- 오픈소스
- JDBC
- ubuntu
- maven
- Exception
- jpa
- 설정
- error
- Spring Boot
- Eclipse
- oracle
- IntelliJ
- Docker
- JavaScript
- AJAX
- Thymeleaf
- spring
- Today
- Total
목록Exception (56)
헤르메스 LIFE
개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 - secondary - MySQL DB 8.0.28 8. lombok https://hermeslog.tistory.com/568 [Spring Boot] HikariCP를 이용한 Multi Database Connection + JPA 개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9..
1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 - secondary - MySQL DB 8.0.28 오류내용 *************************** APPLICATION FAILED TO START *************************** Description: The bean 'productRepository', defined in com.study.springboot.product.repository...
MySQL 최신버전(8.0 이후) 접속 시 아래와 같은 오류가 발생하였습니다. allowPublicKeyRetrieval=true 설정을 추가해주어야 한다고 합니다. jdbc:mysql://localhost:3306/springboot?allowPublicKeyRetrieval=true 더보기 java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:110) ~[mysql-connector-java-8.0.25.jar:8.0.25] at com.mysql.cj.jdbc.exceptions..
아마도 ExceptionHandlerExceptionResolver 가 설정되어 있지 않았을 가능성이 있습니다. 스프링 MVC 에서 예외를 처리하는 방법은 Spring 3.2 이전 @ExceptionHandler HandlerExceptionResolver String 3.2 이후 @ControllerAdvice Spring 5 ResponseStatusException Dispatcher Servlet 에는 3개의 HandlerExceptionResolver 가 등록되어 있습니다. ExceptionHandlerExceptionResolver ResponseStatusExceptionResolver DefaultHandlerExceptinResolver https://luvstudy.tistory.com..
@ExceptionHandler 를 사용하면, Exception 을 Catch 할 수 있습니다. @ExceptionHandler는 Controller 에서만 사용 가능합니다. package test.controller; import java.util.ArrayList; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.GetMapping; @Controller public class TestControl..
개발환경 Spring Boot 2.2.4 JDK 1.8.0_202 REST + log4j2 설정 시 아래와 같은 오류가 발생했습니다. SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/C:/Users/hermeswing/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/C:/Users/hermeswing/.m2/repository/org/apache/logging/log4j/l..
SAP 연동 중 아래와 같은 메시지가 발생되었습니다. JCo initialization failed with java.lang.UnsatisfiedLinkError: C:\Windows\System32\sapjco3.dll: Can't find dependent libraries Visual Studio 2013 C/C++ runtime libraries 를 설치하면 해결됩니다. https://support.microsoft.com/en-us/help/4032938/update-for-visual-c-2013-redistributable-package
getDateTimeFormat( "yyyyMMddHHmmssfff" ) 를 사용해서 함수롤 Call 했더니 아래와 같은 오류가 발생했습니다. Exception in thread "main" java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: HourOfDay at java.time.LocalDate.get0(LocalDate.java:680)at java.time.LocalDate.getLong(LocalDate.java:659) at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298) at java.time.format.DateTimeFo..
개발환경 MSSQL Spring 데이터 저장 시 아래와 같은 오류가 발생하였습니다. com.microsoft.sqlserver.jdbc.SQLServerException: String or binary data would be truncated. 내용 DataIntegrityViolationException 을 리턴한 내용입니다. SQLException Error Code 는 8152 입니다. 등록된 문자열의 길이가 테이블 컬럼의 길이보다 클 때 발생하는 오류 입니다. 컬럼 길이를 좀 늘려야 겠네요.. ㅡㅡㅋ
개발환경 Spring 3.2.9 MyBatis 3.4.6 Microsoft SQL Server REST환경을 구축하고, Insert 를 수행하던 중 중복오류 발생. Exception 메시지가 정제되지 않고 리턴되었습니다. ### Error updating database. Cause: com.microsoft.sqlserver.jdbc.SQLServerException: PRIMARY KEY 제약 조건 'USER_PK'을(를) 위반했습니다. 개체 'dbo.TB_USER'에 중복 키를 삽입할 수 없습니다. 중복 키 값은 (4)입니다. ### The error may involve defaultParameterMap ### The error occurred while setting parameters ###..