配置sessionfactory问题
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" 
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> 
<bean id="dataSource" 
class="org.apache.commons.dbcp.BasicDataSource"> 
<property name="driverClassName" 
value="com.mysql.jdbc.Driver"> 
</property> 
<property name="url" 
value="jdbc:mysql://localhost:3306/studyssh"> 
</property> 
<property name="username" value="root"></property> 
<property name="password" value="root"></property> 
</bean> 
<bean id="sessionFactory" 
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
<property name="dataSource"> 
<ref bean="dataSource" /> 
</property> 
<property name="hibernateProperties"> 
<props> 
<prop key="hibernate.dialect"> 
org.hibernate.dialect.MySQLDialect 
</prop> 
</props> 
</property> 
</bean></beans> 测试类: 
public class Test { 
public static void main(String [] agrs){ 
ApplicationContext ctx = null; ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); 
} } 
报javaw.exe异常,vs2005直接跳出来提示调试,eclipse控制台无起他异常信息 把applicationContext.xml: 
只配置sessionFactory的bean去掉,也就是: 
<?xml version="1.0" encoding="UTF-8"?> 
<beans 
xmlns="http://www.springframework.org/schema/beans" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> 
<bean id="dataSource" 
class="org.apache.commons.dbcp.BasicDataSource"> 
<property name="driverClassName" 
value="com.mysql.jdbc.Driver"> 
</property> 
<property name="url" 
value="jdbc:mysql://localhost:3306/studyssh"> 
</property> 
<property name="username" value="root"></property> 
<property name="password" value="root"></property> 
</bean> 
</beans> 测试类不变,没问题, 
环境:eclipse3.3 + Myeclipse6.5 + jdk1.6 + tomcat5.5 
项目:spring2.0 + hibernate3.1 有没哪位仁兄碰到过这类问题,帮忙指点一下:谢谢!
其它的都还没有动,写了一个小小的BEAN,可以通过SPRING 得到,但sessionFactory 无法配置,请高手帮忙