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).
Spring Bootだけなら動いたのにdependenciesにmybatis入れると起動時にエラーが出た。
データソースの設定がないからだった。
解決
application.propertiesもしくはapplication.ymlにデータベースへの接続情報を指定すると解消した。
https://start.spring.io/ でプロジェクト生成するとsrc/main/resources/application.propertiesが生成されるがapplication.ymlにしてもOK。
MySQLの場合はこんな感じ。
application.yml
spring:
datasource:
url: jdbc:mysql://localhost:3306/mysql
username: devusr
password: devpass
driver-class-name: com.mysql.cj.jdbc.Driver