package cleanup

This commit is contained in:
eugenp 2013-12-31 19:19:16 +02:00
parent ca62e14784
commit 951a83c64d
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="org.baeldung.spring.persistence.model" />
<property name="packagesToScan" value="org.baeldung.persistence.model" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>

View File

@ -1,4 +1,4 @@
package org.baeldung.spring.persistence.service;
package org.baeldung.persistence.service;
import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic;