[ Trouble Shooting ] DataSourceBeanCreationException: Failed to determine a suitable driver class

slowcurve·2023년 5월 24일
0

Trouble Shooting

목록 보기
6/6
***************************
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


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 (no profiles are currently active).


Process finished with exit code 1

🤔 DataSource

  • Spring 에서 DB 와 연결을 맺기 위한 DB 커넥션 정보를 담고 있는 객체로, Bean 으로 등록된다.
  • DataSource 를 생성하기 위해서는 driver-class-name, url, username, password 가 올바르게 전달되어야 한다.

🗝️ Solution

에러 로그를 살펴보면,

'url' attribute is not specified and no embedded datasource could be configured.

즉 url attribute 가 잘못되었음을 나타내고 있다.
하지만 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 (no profiles are currently active).

  1. embedded database 를 사용하고 있는 경우에는 classpath 를 정상적으로 설정했는지 확인할 것
  2. database 설정이 spring profile 마다 다른 경우가 존재하기 때문에 현재 실행시킨 spring profile 을 확인할 것

필자의 경우는 2번에 해당되어 Spring Application 실행시 Active Profile 을 변경해줌으로써 문제를 해결함.

0개의 댓글