当前位置: 代码迷 >> 综合 >> Class 'org.springframework.jdbc.core.JdbcTemplate' not found
  详细解决方案

Class 'org.springframework.jdbc.core.JdbcTemplate' not found

热度:47   发布时间:2023-12-13 23:10:56.0

在学习 配置spring的jdbcTemplate的时候,


<!-- 配置spring的jdbcTemplate -->
    <bean id="jdbcTemplate"
          class="org.springframework.jdbc.core.JdbcTemplate">
          <property name="dataSource" ref="datasource"></property>

</bean>

org.springframework.jdbc.core.JdbcTemplate老是报错: Class 'org.springframework.jdbc.core.JdbcTemplate' not found

解决方法:导入spring-jdbc-4.2.4.RELEASE的jar包

  相关解决方案