Exception
ychatou1220
java Web开发
展开
-
sessionFactory or hibernateTemplate is required错误
启动TOMCAT服务器时就老是报错..........java.lang.IllegalArgumentException: sessionFactory or hibernateTemplate is required原因及解决:xxServiceImpl extends HibernateDaoSupport .改正后运行正常,(应该是xxDaoImpl extends Hi原创 2010-05-05 16:56:00 · 1564 阅读 · 0 评论 -
Remember that ordinal parameters are 1-based!
在使用getSession(().createQuery(hql)查找数据时,出现题目中的错误信息,从字面可以看出是HQL语句的参数设置出了问题,后来才知道在setParameter()时里面的参数设置必须从0开始的原创 2010-05-05 16:54:00 · 2636 阅读 · 1 评论 -
The processing instruction target matching "[xX][mM][lL]" is not allow
The processing instruction target matching "[xX][mM][lL]" is not allowed. Exception:org.xml.sax.SAXParseException: The processing instruction target matching "[xX][mM][lL]" is not allowed. 这个转载 2010-05-05 16:59:00 · 1088 阅读 · 0 评论 -
索引中丢失in或out参数:1
异常: 索引中丢失in或out参数:1 could not load on entity:[……] 遇到此异常,先检查传入的参数与.hbm.xml或entity的参数类型是否一样。 异常的原因是:给一个Long型的属性传入了一个String类型的参数,执行delete()方法就出错了,将String转换为Long型,问题解决所以有时候要检查一下hibernate中.hbm.xml中的字段类型与你数据库中的数据类型是否一致。尤其是主键,一般都是用主键作为索引。转载 2010-07-05 11:05:00 · 13150 阅读 · 0 评论 -
not a SELECTed expression
<br />异常信息:<br />There is an incorrect ORDER BY item. The query is a SELECT DISTINCT query with an ORDER BY clause. In this context, all ORDER BY items must be constants, SELECT list expressions, or expressions whose operands are constants or SELECT list e转载 2010-10-13 11:58:00 · 2408 阅读 · 0 评论 -
关于<a>链接标签里面的属性 href
利用这样的链接进行处理的时候要小心,符号&后面带的id值abc###abc,当传到控制器的时候这个值就剩下abc,也就是说###abc没有被传过去说明对于某些特殊符号,如#,空格等这些程序是无法识别的,所以接收到得数据也就不见了。原创 2011-08-18 16:25:45 · 1156 阅读 · 0 评论