异常1.集成Spring Data JPA
异常信息摘要:
org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
异常信息说明:不知道使用什么数据库,需要在pom.xml标注使用什么数据库,如h2
解决思路:修改pom.xml
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId