严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
hibernate.cfg.xml
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"><!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>
<session-factory> 
<property name="show_sql">true</property>
<property name="myeclipse.connection.profile">myoracle</property>
<property name="connection.url">
jdbc:oracle:thin:localhost:1521:orcl
</property>
<property name="connection.username">system</property>
<property name="connection.password">komoe</property>
<property name="connection.driver_class">
oracle.jdbc.driver.OracleDriver
</property>
<property name="dialect">
org.hibernate.dialect.Oracle9Dialect
</property>
<mapping resource="theBean/UserBean.hbm.xml" /> 
</session-factory></hibernate-configuration>
applicationContext.xml<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation"
value="classpath:hibernate.cfg.xml">
</property>
</bean>
<bean id="dao" class="theDao.UserDaoImpl" scope="singleton">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean id="serivce" class="theService.UserServiceImpl" >
<property name="users" ref="dao"></property>
</bean>

<bean name="signup" class="theAction.SignUp">
<property name="userSI" ref="serivce"></property>
</bean>
</beans>
web.xml
<listener> 
  <listener-class> 
   org.springframework.web.context.ContextLoaderListener 
  </listener-class> 
</listener> 
Struts2+spring2.0+hibernate3.0, jar包是手动加的,程序里有用到的核心包也都有,另外不同版本的同一jar包也都删了
还是报上面那个错误,网上都找遍了好像有很多人没解决的样子