SpringBoot踩坑记录--org.springframework.dao.support.DaoSupport

SpringBoot踩坑记录--org.springframework.dao.support.DaoSupport

在网上找了好久,看很多网友们说要加spring-tx jar包,但我试了之后,发现异常依然存在。
后来加上了spring-boot-starter-jdbc后,解决了这个报错。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>

我也没搞清楚原理是什么,不一定能保证解决问题,大家可以试一试。

你可能感兴趣的:(Spring踩坑记录)