1

我在下面阅读了一个bean代码spring-app.xml

<bean id="mySessionFactory"
            class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="myDataSource" />
        <property name="annotatedClasses">
            <list>
                <value>com.mmi.education.dao.User</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">create</prop>
            </props>
        </property>
    </bean>

而不是属性annotatedClasses,我想指定包。

是否可以?

还有哪些可以在 bean 标签下指定的有效属性?

4

1 回答 1

3
<property name="packagesToScan">
        <list>
            <value>com.mmi.education.dao</value>
        </list>
    </property>

在此处查看 Spring 的文档以获取其他属性。

于 2012-04-09T00:49:59.163 回答