摘要:
1、cound not found /hibernate.cfg.xml 找不到配置文件(是否在src下,是否配置文件名拼写错误)2、不能解析文档:即文件能找到,但里面有错误 a) Could not parse configuration: /hibernate.cfg.xml b) Could not parse mapping document from resource cn/y2t99/test2/StudentBean.hbm.xml Error on line 13 of document :错误发生的行数 The content of element type "cl 阅读全文
摘要:
一、配置单向多对一1、修改外键类2、将外键属性名换为对象名,并提供getter/setter封装 private Integer districtID;换为 数据类型 外键属性; private District district; 主键类 主键对象;3、修改外键类的映射文件 换为 二、配置单向一对多1、修改主键类2、增加Set集合对象并实例化后提供getter/setter封装 private Set 对象名=new HashSet();3、增加标签,配置Set集合对象 阅读全文