Commit Graph

120 Commits

Author SHA1 Message Date
Andy Wilkinson
e1e22f4e5e #79 - Add Gradle configuration to the BOM example. 2015-05-20 14:00:22 +02:00
Oliver Gierke
2c9f75c7e0 #88 - Upgraded to Lombok 1.16.4. 2015-05-20 12:47:49 +02:00
Oliver Gierke
343d29eeec #87 - Cleanup view template. 2015-05-20 12:46:45 +02:00
Brian Clozel
cc2ac546e7 #87 - Fix WebJARs resource handling in Starbucks example. 2015-05-20 12:46:36 +02:00
Oliver Gierke
5f132037e3 #87 - Switched to version-less WebJARs after recent additions in Spring Framework. 2015-05-20 12:46:26 +02:00
Oliver Gierke
09eea9e0b8 #85 - Simplified usage of RestTemplate in StarbucksClient. 2015-05-18 10:13:57 +02:00
Oliver Gierke
43c0bcda98 #85 - Added a test case to show how to use a RestTempalte to interact with a HAL service. 2015-05-17 17:30:03 +02:00
Oliver Gierke
81b576b663 #84 - StarbucksClient now uses correct base URI. 2015-05-17 16:36:25 +02:00
Oliver Gierke
8ce6ac38c0 #83 - Enable web environment for integration test. 2015-05-12 12:22:55 +02:00
Oliver Gierke
b8e29431de #73 - Added example how to customize all Spring Data repositories. 2015-05-05 18:08:10 +02:00
Oliver Gierke
2da20819da #50 - Simplified EclipseLink example.
Switched to a much more simplified domain model as the primary focus of the sample is on the infrastructure setup, not a sophisticated domain model.

Added dedicated build profiles for static (compile-time) weaving and load-time weaving. Simplified application configuration to use more of Spring Boot's auto-configuration features.

Ported Markdown README to Asciidoc.

Original pull request: #68.
2015-05-04 15:07:44 +02:00
Jeremy Rickard
b092d6fb30 #50 - Added example of using Spring Data JPA with EclipseLink.
original pull request: #68.
2015-05-04 15:07:39 +02:00
Oliver Gierke
33a4433058 #77 - Added example to show how to use the release train BOM. 2015-04-16 10:05:28 +02:00
Oliver Gierke
19bb907815 #41 - Added minimal web UI for Starbucks example app.
Added a minimalistic HTML5 web front-end based on Thymeleaf, Bootstrap, jQuery, URI.js and Google Maps JavaScript API. The required JavaScript dependencies are referenced via Webjars.

For details see the README.

Original pull request: #47.
2015-04-14 21:42:13 +02:00
Oliver Gierke
b7263b4ed6 #76 - Added HAL browser to Spring Data REST Starbucks example. 2015-04-14 18:23:55 +02:00
Oliver Gierke
174710c5ba #74 - More documentation within the REST headers example.
Added README to give more details on what the sample actually showcases. Added Spring RESTDocs to document HTTP interaction.
2015-04-08 19:33:04 +02:00
Oliver Gierke
8978423ade #75 - Polished pom.xml.
Fixed scope for test dependencies. Removed obsolete version property for the compiler plugin.
2015-04-08 18:57:17 +02:00
Oliver Gierke
081881b538 #74 - Added sample for conditional GET requests with Spring Data REST. 2015-04-08 18:48:19 +02:00
Oliver Gierke
a9be672139 #72 - Upgraded to Spring Boot 1.2.3.
Listed Greg as developer, too.
2015-03-31 09:31:23 +02:00
Greg Turnquist
3e793a5147 #71 - Remove old SNAPSHOT reference. 2015-03-26 12:53:04 -05:00
Oliver Gierke
49d91bb697 #71 - Upgraded to Spring Security 4.0.
Upgraded security related sample projects in the rest and JPA sub-folders to Spring Security 4.0.
2015-03-26 18:38:16 +01:00
Oliver Gierke
3306ea56f3 Turned Starbucks client into test.
Allows us to benefit from default logging setup. Removed obsolete Tomcat version declaration. Polished StoreInitializer to use Lambdas instead of an enum.
2015-03-25 10:41:38 +01:00
Oliver Gierke
e11e73b58a #70 - Upgraded to Spring Data Fowler GA. 2015-03-23 16:21:44 +01:00
Oliver Gierke
4d500a7028 #69 - Added new sample to root README. 2015-03-19 10:11:38 +01:00
Oliver Gierke
9ecb720f4a #69 - Added example for how to set up Spring Data JPA with two DataSources. 2015-03-19 10:06:46 +01:00
Thomas Darimont
65cef4132d #66 - Added JPA example for using Java 8 Streams with a derived query.
This example demonstrates the usage of Java 8 Stream as return type for derived queries.
2015-03-12 14:20:49 +01:00
Oliver Gierke
2569cf8de3 #57 - Polishing.
Replaced custom builder with Lombok generated one. Turned Lombok into a value object as a side effect. Removed obsolete toString() method. Extended copyright clauses wehere missing. Reduced visibility of repository extension.
2015-03-12 14:01:25 +01:00
Christoph Strobl
9cffcef9c6 #57 - Added samples for Solr highlighting, boost, score, functions and realtime-get.
Refactored initialization to allow custom ingestion of test data. Added samples demonstrating usage of: 

- @Highlight for highlighting fragments.
- @Boost for boosting search terms.
- @Score to indicate interest in document score.
- SolrOperations#getById for realtime-get.
2015-03-12 14:01:21 +01:00
Oliver Gierke
6ba91231f2 #64 - Polishing.
Removed the additional GeoJsonModule and only register the mixin for GeoJsonPoint to be able to read the data from the source JSON file. Removed custom logging.

A bit of polish in the README, JavaDoc.
2015-03-10 14:07:05 +01:00
Christoph Strobl
35596a9045 #64 - Add example for GeoJSON usage in MongoDB.
Add sample to show usage of GeoJSON within domain types and repository query methods.
2015-03-10 13:57:25 +01:00
Oliver Gierke
df7fcb0edb #65 - Added example project for Spring Data web support. 2015-03-10 10:12:28 +01:00
Oliver Gierke
2c97493f9f #62 - Added a section on the Stream usage to the README.
Original pull request: #63.
2015-03-09 12:53:44 +01:00
Thomas Darimont
f5e6b3b6be #62 - Add example for Java 8 Streams in JPA.
This example demonstrates streaming of results in JPA.

Original pull request: #63.
2015-03-09 12:53:43 +01:00
Oliver Gierke
49df9468b5 #54 - Use Stream with try-with-resources.
Tweaked the integration test to use the Stream returned by the repository within a try-with-resources clause so that it gets closed correctly.
2015-03-09 12:53:43 +01:00
Oliver Gierke
966d3c9e44 #59 - Upgraded to Spring Data Fowler RC1. 2015-03-09 12:53:42 +01:00
Oliver Gierke
a865425657 #45 - Polished POM for JPA Java 8 module. 2015-03-09 12:53:42 +01:00
Thomas Darimont
73be2fcddb #54 - Added a project for MongoDB examples using Java 8 features.
This initial version of the example projects demonstrates the usage and mapping behavior of Java 8 Streams in repositories. The test cases oppose a plain List based query method with one that uses a Stream and shows how the former pulls all data into memory first and the iteration is done over the pre-populated list. The execution of the Stream based method in contrast shows that the individual elements are read and converted while iterating the stream.
2015-03-09 12:53:39 +01:00
Oliver Gierke
6597d7ca95 #56 - Upgraded to spring HATEOAS 0.17 snapshots.
Simplified usage of ParameterizedTypeReference through newly introduced TypeReferences class. Moved to Java 8 streams for final output.
2015-03-02 23:00:44 +01:00
Oliver Gierke
797db3eece #53 - Enable -parameters for compilation.
Removed obsolete @Param annotations from repository interfaces. Upgraded to Fowler snapshots for JPA 2.1 examples as we need a fix in derived stored procedure execution to work correctly.

Related issues: DATAJPA-681.
2015-02-27 19:26:37 +01:00
Oliver Gierke
a50a3450cd #52 - Upgraded to Spring Boot 1.2.2. 2015-02-27 07:57:40 +01:00
Oliver Gierke
815e3b7266 #51 - Upgraded dependencies.
Maven APT Plugin - 1.1.2 -> 1.1.3
Querydsl - 3.6.0 -> 3.6.1
Spring Framework - 4.1.4 -> 4.1.5
Lombok - 1.14.8 -> 1.16.2
2015-02-22 14:17:23 +01:00
Oliver Gierke
f37e260a32 #48 - Upgraded to Spring Boot 1.2.1. 2015-01-08 09:43:16 +01:00
Oliver Gierke
0abc0dc3b1 #45 - Adapt to type moves of JSR-310 attribute converters. 2015-01-08 09:42:29 +01:00
Artur Konczak
f9aa1556d8 #28 - Added example for Spring Data Elasticsearch.
Added basic example to show repository and ElasticsearchOperations usage.
2015-01-04 18:40:55 +01:00
Oliver Gierke
7f3339a610 #45 - Removed Jadira user types in favor of new JPA 2.1 AttributeConverters.
We now activate the JSR-310 AttributeConverters shipped with Spring Data JPA 1.8. Removed the dependency to Jadira user types and switch to non-time-zoned Java 8 LocalDateTime.

Original pull request: #46.
2015-01-04 18:09:14 +01:00
Oliver Gierke
e953f6d5e5 #45 - Temporarily add required Spring Data JPA dependencies. 2014-12-30 19:19:35 +01:00
Oliver Gierke
d248a5ffd8 #43 - Moved to new Travis infrastructure. 2014-12-12 08:49:16 +01:00
Oliver Gierke
d7aba90879 #42 - Switched to snapshot repository. 2014-12-12 08:49:16 +01:00
Oliver Gierke
e47c4135fc #27 - Upgraded to Spring Security 4.0.0.RC1. 2014-12-12 08:33:55 +01:00
Oliver Gierke
5d102f9157 #32 - Upgraded to Spring Boot 1.2.0.RELEASE. 2014-12-12 08:33:55 +01:00