写hibernate案例的时候,发现一直出了一个bug,我当时还以为log4j的几个jar依赖文件没有完全导入,可后来导入了还是出错,错误信息如下:
log4j:WARN No appenders could be found for logger (org.jboss.logging).
log4j:WARN Please initialize the log4j system properly.
Exception in thread “main” org.hibernate.boot.MappingNotFoundException: Mapping (RESOURCE) not found : /hibernate_day01/src/hibernate_day01/hibernate_day01.hbm.xml : origin(/hibernate_day01/src/hibernate_day01/hibernate_day01.hbm.xml)
at org.hibernate.boot.spi.XmlMappingBinderAccess.bind(XmlMappingBinderAccess.java:56)
后来发现时resource路径写错了
因该只需要包的路径就好了,于是改了,就没有报错了。
但是结果出乎我意料,既然一次插入两个记录???试了几次了都是
可我只执行了一次!!!我又得开始改bug了。。。
emmmm,我把代码换到idea数据就没有错了,一次直插入一次。。
共勉!