问题1:
Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'baseDaoImpl' defined in file [H:\develop\apache-tomcat-7.0.47\webapps\myspringmvc_01\WEB-INF\classes\com\yc\myspringmvc\daos\impl\BaseDaoImpl.class]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Property 'sqlSessionFactory' or 'sqlSessionTemplate' are required
解决1:
在问题类中添加如下代码:
@Override
@Resource(name="sqlSessionFactory")
public void setSqlSessionFactory(SqlSessionFactory sqlSessionFactory) {
super.setSqlSessionFactory(sqlSessionFactory);
}