В вашем applicationContext.xml
.
отсутствует компонент EntityManagerFactory
. Возможно, самый простой способ - настроить LocalContainerEntityManagerFactoryBean
:
<bean id="myEmf" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="someDataSource"/>
<property name="loadTimeWeaver">
<bean class="org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver"/>
</property>
</bean>
См. http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/orm.html для более подробной информации.