ssh出的严重错误
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
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 java.io.FileNotFoundException: class path resource [com.tt.bean/EMPLOYEE.hbm.xml] cannot be opened because it does not exist
这问题困扰我好几天了,我是从原来成功的案例中复制的架包,web.xml也是的,但老出这错,以前就没有的。咋回事啊,大神们帮帮我这小菜吧。 ssh
[解决办法]
/EMPLOYEE.hbm.xml这个实体类配置文件没有了 添加上就能解决这个问题了
[解决办法]
如下配置才对
<list>
<value>com/tt/bean/EMPLOYEE.hbm.xml</value>
</list>
</property>
[解决办法]
你这个EMPLOYEE.hbm.xml配置的路径不正确,applicationContext.xml中的sessionFactory没有加载上EMPLOYEE.hbm.xml这个文件......看一下你的applicationContext,xml怎么写的。。。
[解决办法]
<list>
<value>com/tt/bean/EMPLOYEE.hbm.xml</value>
</list>
配置了没?
[解决办法]