application.properties 파일에 서버 포트 설정

 

8081로 설정

 

 

localhost:8081 로 테스트 됨.

 

 

오류 내용 >

 

[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 이 부분

 

 

설정 추가 후 

서버 start
Hello World 출력 하도록 소스 생성
결과

 

+ Recent posts