Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 18c30078ba | |||
| 812e202f15 | |||
| bf4cadbdd8 | |||
| 200f1771d5 | |||
| b83a097892 | |||
| 6d08e92117 |
@@ -4,12 +4,12 @@
|
|||||||
|
|
||||||
<groupId>org.springframework.data</groupId>
|
<groupId>org.springframework.data</groupId>
|
||||||
<artifactId>spring-data-elasticsearch</artifactId>
|
<artifactId>spring-data-elasticsearch</artifactId>
|
||||||
<version>2.1.0.BUILD-SNAPSHOT</version>
|
<version>2.1.0.RC1</version>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.data.build</groupId>
|
<groupId>org.springframework.data.build</groupId>
|
||||||
<artifactId>spring-data-parent</artifactId>
|
<artifactId>spring-data-parent</artifactId>
|
||||||
<version>1.9.0.BUILD-SNAPSHOT</version>
|
<version>1.9.0.RC1</version>
|
||||||
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<commonscollections>3.2.1</commonscollections>
|
<commonscollections>3.2.1</commonscollections>
|
||||||
<commonslang>2.6</commonslang>
|
<commonslang>2.6</commonslang>
|
||||||
<elasticsearch>2.4.0</elasticsearch>
|
<elasticsearch>2.4.0</elasticsearch>
|
||||||
<springdata.commons>1.13.0.BUILD-SNAPSHOT</springdata.commons>
|
<springdata.commons>1.13.0.RC1</springdata.commons>
|
||||||
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
@@ -176,8 +176,8 @@
|
|||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>spring-libs-snapshot</id>
|
<id>spring-libs-milestone</id>
|
||||||
<url>https://repo.spring.io/libs-snapshot</url>
|
<url>https://repo.spring.io/libs-milestone</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
|||||||
+9
@@ -35,6 +35,15 @@ public class ElasticsearchRepositoryFactoryBean<T extends Repository<S, ID>, S,
|
|||||||
|
|
||||||
private ElasticsearchOperations operations;
|
private ElasticsearchOperations operations;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new {@link ElasticsearchRepositoryFactoryBean} for the given repository interface.
|
||||||
|
*
|
||||||
|
* @param repositoryInterface must not be {@literal null}.
|
||||||
|
*/
|
||||||
|
public ElasticsearchRepositoryFactoryBean(Class<? extends T> repositoryInterface) {
|
||||||
|
super(repositoryInterface);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configures the {@link ElasticsearchOperations} to be used to create Elasticsearch repositories.
|
* Configures the {@link ElasticsearchOperations} to be used to create Elasticsearch repositories.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
org.springframework.data.repository.core.support.RepositoryFactorySupport=org.springframework.data.elasticsearch.repository.support.ElasticsearchRepositoryFactory
|
||||||
@@ -1,6 +1,22 @@
|
|||||||
Spring Data Elasticsearch Changelog
|
Spring Data Elasticsearch Changelog
|
||||||
===================================
|
===================================
|
||||||
|
|
||||||
|
Changes in version 2.1.0.RC1 (2016-12-21)
|
||||||
|
-----------------------------------------
|
||||||
|
* DATAES-315 - Adapt API in RepositoryFactoryBeanSupport implementation.
|
||||||
|
* DATAES-313 - Register repository factory in spring.factories for multi-store support.
|
||||||
|
* DATAES-289 - Upgrade to Elasticsearch 2.4.
|
||||||
|
* DATAES-284 - Downgrade to Jackson 2.7.5 until Elasticsearch is compatible with 2.8.
|
||||||
|
* DATAES-281 - Can't save entity without id setter.
|
||||||
|
* DATAES-275 - Release 2.1 RC1 (Ingalls).
|
||||||
|
|
||||||
|
|
||||||
|
Changes in version 3.0.0.M1 (2016-11-23)
|
||||||
|
----------------------------------------
|
||||||
|
* DATAES-307 - Set up 3.0 development.
|
||||||
|
* DATAES-306 - Release 3.0 M1 (Kay).
|
||||||
|
|
||||||
|
|
||||||
Changes in version 2.0.5.RELEASE (2016-11-03)
|
Changes in version 2.0.5.RELEASE (2016-11-03)
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
* DATAES-300 - Release 2.0.5 (Hopper SR5).
|
* DATAES-300 - Release 2.0.5 (Hopper SR5).
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Spring Data Elasticsearch 2.1 M1
|
Spring Data Elasticsearch 2.1 RC1
|
||||||
Copyright (c) [2013-2016] Pivotal Software, Inc.
|
Copyright (c) [2013-2016] Pivotal Software, Inc.
|
||||||
|
|
||||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||||
|
|||||||
Reference in New Issue
Block a user