文章列表
http://t.cn/8kQ0FI5
BeanCreationException:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested exception is org.hibernate.HibernateException: Dialect class not found: M ...
在用hibernateDaoSupport实现分页后,启动的时候报错:
'sessionFactory' or 'hibernateTemplate' is required
解决的办法是:
public abstract class AGenericDao<T> extends HibernateDaoSupport {
// get the realType--Class of T
private Class<T> clazz;
private SessionFactory mySessionFactory ;// 不能直接重写Hiber ...
ssh整合开发中的分页方案(转)
- 博客分类:
- SSH
分页显示一直是web开发中一大烦琐的难题,传统的网页设计只在一个JSP或者ASP页面中书写所有关于数据库操作的代码,那样做分页可能简单一点,但当把网站分层开发后,分页就比较困难了,下面是我做Spring+Hibernate+Struts2项目时设计的分页代码,与大家分享交流。1、DAO层接口的设计,在MemberDao接口中定义了如下两个方法:
public interface MemberDao{ //省略了其他的代码
equal symbol expected
- 博客分类:
- errors
equal symbol expected,是由于JSP中某个符号(如引号)多了或者少了导致的, 查找错误行即可
使用log4j在SSH集成环境中追踪错误
- 博客分类:
- SSH
insert log4j.properties at your project , such as the src/main/resource with :
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} ...
在做ssh集成的时候,会碰到在xml文件中做一些配置工作,
比如在web.xml中配置过滤器,
在struts.xml中配置常量.
在hibernate.cfg.xml中配置信息庞杂的属性...
直接安装一个叫Rinzo的eclipse插件,在编辑这些xml文件的时候,就会有属性自动提示了