Notice
Recent Posts
Recent Comments
Link
투케이2K
64. (TWOK/ERROR) [Spring] 빌드 에러 - Failed to configure a DataSource: 'url' attribute is not specified 본문
투케이2K 에러관리
64. (TWOK/ERROR) [Spring] 빌드 에러 - Failed to configure a DataSource: 'url' attribute is not specified
투케이2K 2022. 5. 10. 17:35[환경 설정 및 설명]
프로그램 : Intelij
설 명 : 빌드 에러 - Failed to configure a DataSource: 'url' attribute is not specified
[에러 원인]
1. application.properties 및 application.yml 파일에서 jdbc datasource 가 설정되지 않아서 발생하는 이슈
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
[해결 방법]
1. application.yml 기준 : jdbc datasource 설정 실시
# TODO [공통으로 사용]
spring:
# [profiles : 배포 시 설정 이름 : spring 내 설정]
profiles:
active: prod
# [devtools : spring 내 설정]
devtools:
livereload:
enabled: true
# [datasource : spring 내 설정]
datasource:
driver-class-name: oracle.jdbc.OracleDriver
url: jdbc:oracle:thin:@115.58.176.205:1621:admin (서비스 네임 : Service Name)
username: admin (User / Schema)
password: admin#@0988 (Password)
반응형
'투케이2K 에러관리' 카테고리의 다른 글
Comments