Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
03d6cd9f
Commit
03d6cd9f
authored
Aug 23, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.0.x'
parents
da4624a8
be00c1db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
3 deletions
+71
-3
pom.xml
spring-boot-project/spring-boot-autoconfigure/pom.xml
+5
-0
CacheAutoConfiguration.java
...work/boot/autoconfigure/cache/CacheAutoConfiguration.java
+1
-3
Hibernate2ndLevelCacheEhCacheIntegrationTests.java
...rm/jpa/Hibernate2ndLevelCacheEhCacheIntegrationTests.java
+65
-0
No files found.
spring-boot-project/spring-boot-autoconfigure/pom.xml
View file @
03d6cd9f
...
@@ -325,6 +325,11 @@
...
@@ -325,6 +325,11 @@
<artifactId>
hibernate-core
</artifactId>
<artifactId>
hibernate-core
</artifactId>
<optional>
true
</optional>
<optional>
true
</optional>
</dependency>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-ehcache
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<dependency>
<groupId>
org.hibernate.validator
</groupId>
<groupId>
org.hibernate.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<artifactId>
hibernate-validator
</artifactId>
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheAutoConfiguration.java
View file @
03d6cd9f
...
@@ -21,7 +21,6 @@ import java.util.List;
...
@@ -21,7 +21,6 @@ import java.util.List;
import
org.springframework.beans.factory.InitializingBean
;
import
org.springframework.beans.factory.InitializingBean
;
import
org.springframework.beans.factory.ObjectProvider
;
import
org.springframework.beans.factory.ObjectProvider
;
import
org.springframework.boot.autoconfigure.AutoConfigureAfter
;
import
org.springframework.boot.autoconfigure.AutoConfigureAfter
;
import
org.springframework.boot.autoconfigure.AutoConfigureBefore
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
import
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration.CacheConfigurationImportSelector
;
import
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration.CacheConfigurationImportSelector
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnBean
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnBean
;
...
@@ -60,9 +59,8 @@ import org.springframework.util.Assert;
...
@@ -60,9 +59,8 @@ import org.springframework.util.Assert;
@ConditionalOnBean
(
CacheAspectSupport
.
class
)
@ConditionalOnBean
(
CacheAspectSupport
.
class
)
@ConditionalOnMissingBean
(
value
=
CacheManager
.
class
,
name
=
"cacheResolver"
)
@ConditionalOnMissingBean
(
value
=
CacheManager
.
class
,
name
=
"cacheResolver"
)
@EnableConfigurationProperties
(
CacheProperties
.
class
)
@EnableConfigurationProperties
(
CacheProperties
.
class
)
@AutoConfigureBefore
(
HibernateJpaAutoConfiguration
.
class
)
@AutoConfigureAfter
({
CouchbaseAutoConfiguration
.
class
,
HazelcastAutoConfiguration
.
class
,
@AutoConfigureAfter
({
CouchbaseAutoConfiguration
.
class
,
HazelcastAutoConfiguration
.
class
,
RedisAutoConfiguration
.
class
})
HibernateJpaAutoConfiguration
.
class
,
RedisAutoConfiguration
.
class
})
@Import
(
CacheConfigurationImportSelector
.
class
)
@Import
(
CacheConfigurationImportSelector
.
class
)
public
class
CacheAutoConfiguration
{
public
class
CacheAutoConfiguration
{
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/Hibernate2ndLevelCacheEhCacheIntegrationTests.java
0 → 100644
View file @
03d6cd9f
/*
* Copyright 2012-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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
autoconfigure
.
orm
.
jpa
;
import
org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration
;
import
org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
;
import
org.springframework.boot.test.context.runner.ApplicationContextRunner
;
import
org.springframework.boot.testsupport.runner.classpath.ClassPathExclusions
;
import
org.springframework.boot.testsupport.runner.classpath.ModifiedClassPathRunner
;
import
org.springframework.cache.annotation.EnableCaching
;
import
org.springframework.context.annotation.Configuration
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Tests for Hibernate 2nd level cache with ehcache2.
*
* @author Stephane Nicoll
*/
@RunWith
(
ModifiedClassPathRunner
.
class
)
@ClassPathExclusions
(
"ehcache-3*.jar"
)
public
class
Hibernate2ndLevelCacheEhCacheIntegrationTests
{
private
final
ApplicationContextRunner
contextRunner
=
new
ApplicationContextRunner
()
.
withConfiguration
(
AutoConfigurations
.
of
(
CacheAutoConfiguration
.
class
,
DataSourceAutoConfiguration
.
class
,
HibernateJpaAutoConfiguration
.
class
))
.
withPropertyValues
(
"spring.datasource.initialization-mode=never"
)
.
withUserConfiguration
(
TestConfiguration
.
class
);
@Test
public
void
hibernate2ndLevelCacheWithEhCache2
()
{
this
.
contextRunner
.
withPropertyValues
(
"spring.cache.type=ehcache"
,
"spring.jpa.properties.hibernate.cache.region.factory_class="
+
SingletonEhCacheRegionFactory
.
class
.
getName
())
.
run
((
context
)
->
assertThat
(
context
).
hasNotFailed
());
}
@Configuration
@EnableCaching
static
class
TestConfiguration
{
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment