运行ssh,还可能因为可运行了SSH框架项目时,出现了“Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor.”
这时需要在你项目所在开发环境里找到.metadata文件夹,打开找到.plugins文件夹,在.plugins里面找到org.eclipse.wst.server.core,打开org.eclipse.wst.server.core文件夹,找到servers.xml文件,打开servers.xml文件、找到语句start-timeout="45",将其时间改为1000,或其他更长任意时间
Spring出现无法加载的问题时,应该是server缓存问题。先把当前项目clean一下,删除现有server新建一个,再把项目移除过去
Dao继承HibernateSupportDao时,需要注入SessionFactory,在dao中写法为:
@Resource
public void setSessionFactory0(SessionFactory sessionFactory){
super.setSessionFactory(sessionFactory);
}
因为未实现Dao接口,而是类,在基于注解方式配事务时要加入proxy-target-class="true"。(jdk动态注入不支持类注入,若要使用类,则必须使用cglib代理)
JavaBean命名必须规范,get/set方法中首字母大写,其余小写