我是靠谱客的博主 追寻小蜜蜂,最近开发中收集的这篇文章主要介绍Invocation of init method failed;,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager' defined in class path resource [applicationContext.xml]: Cannot resolve reference to bean 'sessionFactory' while setting bean property 'sessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested exception is org.hibernate.MappingException: class test.domain.Customer not found while looking for property: cust_id

让我非常无语的一个错,这句话的意思是:创建transactionManager的时候出错了,因为在setting它的属性sessionFactory的时候出错了。sessionFactory在创建的时候,调用初始化方法出错了,找不到的cust_id在我配置的 class test.domain.Customer.所以去applicationContext.xml中去寻找相应类的配置文件发现如下:

	<!-- 引入orm元数据,指定orm元数据所在的包路径,spring会自动读取包中的所有配置 -->
		<property name="mappingDirectoryLocations" value="classpath:test/domain"></property>
		

然后在引用路径classpath:test/domain处改为classpath:/test/domain也就是加个“/”就行了。这样错误就没有了,所以以后养成好习惯,加上“/”.

最后

以上就是追寻小蜜蜂为你收集整理的Invocation of init method failed;的全部内容,希望文章能够帮你解决Invocation of init method failed;所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部