首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Eclipse开发 >

myeclipse没法启动Tomcat

2012-12-27 
myeclipse无法启动Tomcat晚上还可以启动的项目,第二天就启动不起来了,报出错误:The markup declarations c

myeclipse无法启动Tomcat
晚上还可以启动的项目,第二天就启动不起来了,
报出错误:The markup declarations contained or pointed to by the document type declaration must be well-formed. Nested exception: The markup declarations contained or pointed to by the document type declaration must be well-formed.

也没有改过什么。就是启不来,找了半天
原因为:
<hibernate-mapping package="com.demo.hibernate.beans">

    <class name="User" table="user">
        <id name="id" column="ID" type="integer">
            <generator column="username" type="String" />
        <property name="password" column="password" type="String" />
        <property name="email" column="email" type="String" />
    </class>  
</hibernate-mapping>

把 type="String"----->type="java.lang.String"
搞定~~~

热点排行