我正在研究一个使用 Spring 和 JPA 的新 Web 应用程序。我想知道通过使用 org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter 的 jpaVendorAdapter,哪些 Hibernate 真正被使用或通过此配置可用(参见下面的配置)?
在搜索代码库的其余部分时,我只在代码中找到了对 Hibernate 的缓存引用的 POJO/实体。为什么在这里使用 Hibernate 缓存?是否有 JPA 选项可以替代对 Hibernate 的任何依赖?
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "test")
@Cache(usage=CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
Spring contextConfigLocation 文件摘录:
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter">
<bean
class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="database" value="MYSQL" />
<property name="showSql" value="false" />
</bean>
</property>
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/app" />
<property name="username" value="root" />
<property name="password" value="pwd" />
</bean>