最近我发现了Spring Data Jpa。我无法使其工作的一件事是对Spring的异常层次结构的适当异常转换。
根据此Spring Data JPA forces CGLib proxying to non repository classes,<jpa:repositories />
激活了使用@Repository注释的Spring bean的持久性异常转换。本文中的参考文档指向spring-data-jpa 1.1.1。
但是当您查看版本1.3.0的文档时,此段落已被删除。此外,我正在使用@Repository
注释将其放在尽可能的位置,但没有成功。
我的问题是:是否可以使用最近的spring-data-jpa lib版本1.3.0实现正确的异常转换?
确定。我将在这里进行一些配置:
...
<bean id="myDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
<property name="driverClass" value="oracle.jdbc.OracleDriver"/>
<property name="jdbcUrl" value="jdbc:oracle:thin:@localhost:1521:pbase"/>
<property name="user" value="sa"/>
<property name="password" value="pass"/>
</bean>
<context:annotation-config/>
<bean id="myEmf" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="myDataSource"/>
<property name="persistenceUnitName" value="prjPersistenceUnit"></property>
<property name="persistenceXmlLocation" value="classpath:META-INF/mpersistence.xml"></property>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter"
p:showSql="true"/>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="myEmf"/>
</bean>
<tx:annotation-driven/>
<jpa:repositories base-package="com.mycompany.repository" />
mpersistence.xml的内容
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="prjPersistenceUnit" transaction-type="RESOURCE_LOCAL">
<description>Persistence unit which uses EclipseLink JPA 2.0 implementation.</description>
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<class>com.mycompany.Setting</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="eclipselink.target-server" value="JBoss"/>
<property name="eclipselink.target-database" value="Oracle10g"/>
<property name="eclipselink.weaving" value="static"/>
</properties>
</persistence-unit>
</persistence>
我的存储库
@Repository
public interface TestRepository extends JpaRepository<Setting, Long> {
Setting findByNamee(String name);
}
这里findByNamee应该会增加一些Spring数据库异常,因为数据库中的不动产名称不是namee。但我总是得到
Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DatabaseException
但是,在使用@Repository
注释配置常规Dao对象时,一切都按预期工作。
我正在尝试使用eclipseLink 2.3.2在Tomcat 6.0上部署它。
答案 0 :(得分:0)
您可以查看我在https://github.com/zagyi/examples/tree/master/spring-data-jpa
之后发布的一些工作示例代码答案 1 :(得分:0)
您必须将EclipseLink Jpa Dialect注入EntityManagerFactory,因为异常翻译器是方言。