让人蛋疼的异常

今天用Spring整合Hibernate遇到这么一个异常:

Caused by: org.dom4j.DocumentException: Error on line 28 of document  : Element type "property" must be followed by either attribute specifications, ">" or "/>". Nested exception: Element type "property" must be followed by either attribute specifications, ">" or "/>".

一开始以为自己的beans.xml配置文件报的错。

后来一找,是xxx.htm.xml文件。

而且真正的错误,并不是像控制台报告的那样的。


下面是错误的代码:

<property name="postTime" column="post_time"type="date" />

下面是正确的代码:

<property name="postTime" column="post_time" type="date" />

看到区别的了吗?

column="post_time"    type="date" 之间要有空格...

就这个错误。。。让我疼了半天。。。

教训:程序要开要 “小心谨慎”,不然就 各种异常...

你可能感兴趣的:(exception)