Upgrade to EclipseLink 2.7.1
This commit is contained in:
parent
823a16ce17
commit
0270808b3c
|
|
@ -8,7 +8,7 @@ dependencies {
|
|||
optional(project(":spring-aop"))
|
||||
optional(project(":spring-context"))
|
||||
optional(project(":spring-web"))
|
||||
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.0")
|
||||
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.1")
|
||||
optional("org.hibernate:hibernate-core:5.2.12.Final")
|
||||
optional("javax.servlet:javax.servlet-api:3.1.0")
|
||||
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -31,7 +31,8 @@ import org.springframework.transaction.TransactionException;
|
|||
|
||||
/**
|
||||
* {@link org.springframework.orm.jpa.JpaDialect} implementation for Eclipse
|
||||
* Persistence Services (EclipseLink). Developed and tested against EclipseLink 2.4.
|
||||
* Persistence Services (EclipseLink). Developed and tested against EclipseLink 2.7;
|
||||
* backwards-compatible with EclipseLink 2.5 and 2.6 at runtime.
|
||||
*
|
||||
* <p>By default, this class acquires an early EclipseLink transaction with an early
|
||||
* JDBC Connection for non-read-only transactions. This allows for mixing JDBC and
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -19,7 +19,6 @@ package org.springframework.orm.jpa.vendor;
|
|||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import javax.persistence.EntityManager;
|
||||
import javax.persistence.spi.PersistenceProvider;
|
||||
|
||||
|
|
@ -31,7 +30,8 @@ import org.springframework.lang.Nullable;
|
|||
|
||||
/**
|
||||
* {@link org.springframework.orm.jpa.JpaVendorAdapter} implementation for Eclipse
|
||||
* Persistence Services (EclipseLink). Developed and tested against EclipseLink 2.4.
|
||||
* Persistence Services (EclipseLink). Developed and tested against EclipseLink 2.7;
|
||||
* backwards-compatible with EclipseLink 2.5 and 2.6 at runtime.
|
||||
*
|
||||
* <p>Exposes EclipseLink's persistence provider and EntityManager extension interface,
|
||||
* and adapts {@link AbstractJpaVendorAdapter}'s common configuration settings.
|
||||
|
|
|
|||
Loading…
Reference in New Issue