异常集
?
?java异常
?
1,org.springframework.beans.factory.BeanCreationException:
详细:
Error creating bean with name 'sessionFactory' defined in class path resource [conf/app-resource.xml]: Invocation of init method failed; nested exception is org.hibernate.InvalidMappingException: Could not parse mapping document from invalid mapping
原因:
? ? 无法解析spring配置文件 ? 导致调用init方法失败;这可能是因为配置文件配置错误导致;
?
解决方法:检查配置文件;重新配置
?
?
2,org.hibernate.MappingException:
详细:
?Repeated column in mapping for entity: eBay.pojo.Item column: id (should be mapped with insert="false" update="false")
?
原因:
hibernate的映射文件配置出现问题,从字面上看是id主键问题,但是不然是表对应的实体不对;copy归来的忘改了
?
解决方法:修改配置文件的实体和标的映射
?
3,java.io.FileNotFoundException
详细:key.properties (系统找不到指定的文件。)
?
原因:因为io输入流的文件路劲输入不正确,导致的;
?
解决方法:在项目部署时,由于我搞不清楚绝对路径和相对路径 ?;项目部书签和部署后的目录结构的不同导致的; ? 这里我提3个状态:一 ,编译之前 ?二,文件编译之后 ? 三,文件部署完成;在这三个状态里,一个项目的目录结构是怎么变化的。在项目运行时 ?我们要什么状态下的目录来写路径?(求解答)
?
?
4,遇到最牛叉的了 ??in thread "Timer-2" java.lang.OutOfMemoryError: PermGen space
详细:内存溢出呀
? ?估计是静态的太多,外加线程循环!?
解决方法:程序优化 ?重新设计线程循环!