Caused by: java.lang.IllegalArgumentException: ...

  在使用springmvc+jdbcTemplate时报的错,意思是说你必须注入其 jdbcTemplate 和dataSource属性,,原因是在DaoImpl里面没指定dataSource

<bean id="userDao" class="com.szy.dao.impl.UserDaoImpl">
  <property name="dataSource" ref="dataSource" />
 </bean>

或者

<bean id="jdbcTemplate"
  class="org.springframework.jdbc.core.JdbcTemplate">
  <property name="dataSource" ref="dataSource" />
 </bean>
 <bean id="userDao" class="com.szy.dao.impl.UserDaoImpl">
  <property name="jdbcTemplate" ref="jdbcTemplate" /> 
 </bean>

二选一,

 

 

你可能感兴趣的:(caused,by:)