application.properties 파일에 서버 포트 설정
'Spring boot' 카테고리의 다른 글
Spring Boot 설치 후 톰캣서버 스타트 오류 시( Exception encountered during context initialization.. ) (0) | 2023.08.14 |
---|
application.properties 파일에 서버 포트 설정
Spring Boot 설치 후 톰캣서버 스타트 오류 시( Exception encountered during context initialization.. ) (0) | 2023.08.14 |
---|
오류 내용 >
[ConfigServletWebServerApplicationContext] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception with message: Failed to determine a suitable driver class
- 로컬 톰캣 서버가 start 되지 않음.
- 이런 경우 초기 sts 프로젝트 생성 시 db driver 체크 후 db접속 설정을 하지 않은 경우 발생
build.gradle 에 설정 확인. 나같은 경우 초기 오라클드라이브를 체크했음.
src/main/resources
application.properties 에 설정 추가
#oracle set 이 부분
설정 추가 후
Spring Boot > 로컬 테스트 시 db포트 8080 사용 시 포트 변경 (0) | 2023.08.14 |
---|