ClassNotFoundException: org.springframework.jdbc.datasource.DriverManagerDataSource

和自甴很熟 提交于 2019-11-30 03:12:02

Try to add to POM.xml:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>3.0.3.RELEASE</version>
</dependency>

if none of the above solution doesn't work, then manually add spring-jdbc jar file to webapp/WEB-INF/lib.

I think you should import selected jdbc jar into web app library.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!