在applicationContext.xml中配置:
<!-- 配置dataSource -->
<bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="com.mysql.cj.jdbc.Driver"/>
<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/ssm_spring?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT"/>
<property name="user" value="root"/>
<property name="password" value="root"/>
</bean>
<!-- 配置dao -->
<bean name="userDao" class="com.lingzhihao.dao.UserDaoImpl">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 配置service -->
<bean name="userService" class="com.lingzhihao.service.UserServiceImpl">
<property name="ud" ref="userDao"/>
</bean>