<?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.xsd">
<!--配置Datasourse数据源-->
<bean id="dataSourse" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql:///test?useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<!--配置SessionFactory-->
<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSourse"/>
<property name="mappingResources">
<list>
<value>com/javaclass/hibernate/domain/Customer.hbm.xml</value>
<value>com/javaclass/hibernate/domain/Order.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
</props>
</property>
</bean>
</beans>
session能拿到 工厂类也可以 一查询就没了 学hibernate的时候能正常查询数据
我是真的迷了 网上搜蒙了 跟着教程走的 就是不行 不知道是我配置出问题还是jar缺失什么的 麻烦看下 感谢感谢