#35 - Added example for Map-based repositories.

This commit is contained in:
Oliver Gierke
2014-11-26 18:55:09 +01:00
parent c30d5827a9
commit a579f6e879
5 changed files with 179 additions and 0 deletions

37
map/pom.xml Normal file
View File

@@ -0,0 +1,37 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-data-map-repositories-example</artifactId>
<name>Spring Data - Map repositories example</name>
<parent>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-examples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-keyvalue</artifactId>
<version>0.1.0.BUILD-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>spring-libs-snapshot</id>
<url>https://repos.spring.io/libs-snapshot</url>
</repository>
</repositories>
</project>

View File

@@ -0,0 +1,39 @@
/*
* Copyright 2014 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 example;
import java.util.UUID;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.springframework.data.annotation.Id;
/**
* A domain type.
*
* @author Oliver Gierke
*/
@RequiredArgsConstructor
@Getter
@EqualsAndHashCode
public class Person {
private final @Id UUID id = UUID.randomUUID();
private final String firstname, lastname;
private final int age;
}

View File

@@ -0,0 +1,37 @@
/*
* Copyright 2014 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 example;
import java.util.List;
import java.util.UUID;
import org.springframework.data.repository.CrudRepository;
/**
* A repository for {@link Person} instances.
*
* @author Oliver Gierke
*/
public interface PersonRepository extends CrudRepository<Person, UUID> {
/**
* Returns all person older than the given age.
*
* @param age
* @return
*/
List<Person> findByAgeGreaterThan(int age);
}

View File

@@ -0,0 +1,65 @@
/*
* Copyright 2014 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 example;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.map.repository.config.EnableMapRepositories;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* Integration tests for {@link PersonRepository}.
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration
public class PersonRepositoryIntegrationTest {
@Configuration
@EnableMapRepositories
static class Config {}
@Autowired PersonRepository repository;
@Test
public void storesPerson() {
Person person = repository.save(new Person("Dave", "Matthews", 47));
assertThat(repository.findOne(person.getId()), is(person));
}
@Test
public void findsPersonByAge() {
Person dave = repository.save(new Person("Dave", "Matthews", 47));
Person oliver = repository.save(new Person("Oliver August", "Matthews", 7));
List<Person> result = repository.findByAgeGreaterThan(18);
assertThat(result, hasItem(dave));
assertThat(result, not(hasItem(oliver)));
}
}

View File

@@ -17,6 +17,7 @@
<modules>
<module>jpa</module>
<module>map</module>
<module>mongodb</module>
<module>multi-store</module>
<module>rest</module>