1.我在hibernate.cfg.xml中添加以下行,但它不起作用 2.如果我把类放在映射中,一切正常。任何人都使用这种类型的配置吗?
<mapping package="com.common"/>
答案 0 :(得分:1)
我添加了以下配置
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="com.common.domainobjects" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
</props>
</property>
</bean>