Tag: jpa 2.1

如何在persistence.xml中指定JPA 2.1?

在网上快速search可以发现3个或4个变种,人们如何在persistence.xml指定xmlns和xsi:schemaLocation 。 指定JPA版本2.1的“正确”方式是什么? 我在用着: <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">

JPA支持Java 8新的date和时间API

我为我的新项目使用Java 8。 我试图在java 8中使用新的date和时间api,但是我不知道JPA 2.1完全支持这个新的date和时间API或不。 请分享您的经验/意见在JPA的支持新的date和时间API在Java 8。 我可以安全地使用JPA 2.1在Java 8中使用新的date和时间api吗? 更新: 我正在使用Hibernate(4.3.5.Final)作为JPA实现。