0

我对 Spring 和 Hibernate 有一个非常奇怪的问题。正如我在教程中看到的那样,我已经配置了所有东西,我的 database.properties、hibernate.xml 和 datasource.xml,但是连接不起作用。

当我更改连接属性时,它不会改变任何东西。

我的休眠.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.5.xsd">

<!-- Hibernate session factory -->
<bean id="sessionFactory" 
    class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">

    <property name="dataSource">
      <ref bean="dataSource"/>
    </property>

    <property name="hibernateProperties">
       <props>
         <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
         <prop key="hibernate.show_sql">true</prop>
       </props>
    </property>

    <property name="packagesToScan">
        <list>
            <value>pl.devell.model</value>
        </list>
    </property>

</bean>

我的道课程正在工作,但没有返回任何结果。

4

1 回答 1

0

我想到了。

pl.devell.model 不是要扫描的包的正确名称。

于 2013-05-07T13:34:59.573 回答