반응형
***************************
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 suitable jdbc url
Action: Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (the profiles L are currently active).
DB설정시 위와 같은 에러가 발생했다.
application.properties의 DB정보를 yml 형태를 복붙하여 수정했더니 아래의 모형이었다.
spring.datasource.driver-class-name=net.sf.log4jdbc.sql.jdbcapi.DriverSpy
spring.datasource.jdbc-url=jdbc:log4jdbc:oracle:thin:@localhost:1521:XE
spring.datasource.username=BNK_DB
spring.datasource.password=aa12345^
jdbc-url을 url로 바꾸니 에러가 사라졌다.
추가적으로 driver-class-name를 driverClassName등으로 오입력 하였을 경우에도 같은 에러가 발생한다.
반응형
'Spring > error' 카테고리의 다른 글
[Spring Error] log4jdbc 에러 (0) | 2020.12.13 |
---|---|
[Spring Error 기록] CORS policy 해결 후, token 생기지 않는 문제 해결 (0) | 2020.12.10 |
[Spring-Boot] 실행 시 Path with "WEB-INF" or "META-INF" 경고 (0) | 2020.12.08 |
[Spring Error 기록] 406에러 발생시 해결 방법 (0) | 2020.12.05 |
[Spring Error 기록] CORS policy 해결방법, 모든 Origin 허용방법 (0) | 2020.12.05 |