Failed to determine a suitable driver class

Caused by: org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver class

除了配置文件有问题之外,还有一种可能:单元测试类上的标签写错也会报这个错。
使用springboot-test时,单元测试类上的标签:
@RunWith(SpringRunner)
@SpringBootTest(classes = 主配置类.class)
而不是@ContextConfiguration(classes = 主配置类.class)
这样写虽然编译不会报错,但是运行时会报这个错。

你可能感兴趣的:(单元测试,spring,boot)