All Projects → spring-projects → Spring Data Rest

spring-projects / Spring Data Rest

Simplifies building hypermedia-driven REST web services on top of Spring Data repositories

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Spring Data Rest

Spring Data R2dbc
Provide support to increase developer productivity in Java when using Reactive Relational Database Connectivity. Uses familiar Spring concepts such as a DatabaseClient for core API usage and lightweight repository style data access.
Stars: ✭ 534 (-28.13%)
Mutual labels:  spring-data, framework, spring, ddd
Spring Data Jpa
Simplifies the development of creating a JPA-based data access layer.
Stars: ✭ 2,238 (+201.21%)
Mutual labels:  spring-data, framework, spring, ddd
Spring Data Neo4j
Provide support to increase developer productivity in Java when using Neo4j. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 662 (-10.9%)
Mutual labels:  spring-data, framework, spring, ddd
Spring Data Cassandra
Provides support to increase developer productivity in Java when using Apache Cassandra. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 315 (-57.6%)
Mutual labels:  spring-data, framework, spring, ddd
Spring Data Commons
Spring Data Commons. Interfaces and code shared between the various datastore specific implementations.
Stars: ✭ 542 (-27.05%)
Mutual labels:  spring-data, framework, spring, ddd
Spring Data Mongodb
Provide support to increase developer productivity in Java when using MongoDB. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 1,253 (+68.64%)
Mutual labels:  spring-data, framework, spring, ddd
Spring Data Redis
Provides support to increase developer productivity in Java when using Redis, a key-value store. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 1,293 (+74.02%)
Mutual labels:  spring-data, framework, spring, ddd
Awesome Spring
A curated list of awesome books, tutorials, courses, and resources for the Spring framework ecosystem.
Stars: ✭ 186 (-74.97%)
Mutual labels:  spring-data, spring
Digital Restaurant
DDD. Event sourcing. CQRS. REST. Modular. Microservices. Kotlin. Spring. Axon platform. Apache Kafka. RabbitMQ
Stars: ✭ 222 (-70.12%)
Mutual labels:  spring-data, ddd
Spring Petclinic Rest
REST version of the Spring Petclinic sample application
Stars: ✭ 257 (-65.41%)
Mutual labels:  spring-data, spring
Angularjs Springmvc Sample Boot
A RESTful sample using Spring Boot, Spring MVC, Spring Data and Angular/Bootstrap.
Stars: ✭ 309 (-58.41%)
Mutual labels:  spring-data, spring
Nb Springboot
NetBeans IDE plugin supporting programming with Spring Boot
Stars: ✭ 111 (-85.06%)
Mutual labels:  spring-data, spring
Atom
Java course materials
Stars: ✭ 293 (-60.57%)
Mutual labels:  spring-data, spring
Codeguide
📚 本代码库是作者小傅哥多年从事一线互联网 Java 开发的学习历程技术汇总,旨在为大家提供一个清晰详细的学习教程,侧重点更倾向编写Java核心内容。如果本仓库能为您提供帮助,请给予支持(关注、点赞、分享)!
Stars: ✭ 6,750 (+808.48%)
Mutual labels:  spring, ddd
Angular Spring Data Rest
An AngularJS module to ease the work with a Spring Data REST backend.
Stars: ✭ 165 (-77.79%)
Mutual labels:  spring-data, spring
spring-data-ldap
Repository abstraction for Spring LDAP
Stars: ✭ 53 (-92.87%)
Mutual labels:  spring-data, ddd
Spring Content
Cloud-Native Storage and Enterprise Content Services (ECMS) for Spring
Stars: ✭ 151 (-79.68%)
Mutual labels:  spring-data, spring
Almin
Client-side DDD/CQRS for JavaScript.
Stars: ✭ 477 (-35.8%)
Mutual labels:  framework, ddd
Articles
This repository along with the exercises repository (https://github.com/njnareshjoshi/exercises) contains coding examples for my blog ProgrammingMitra
Stars: ✭ 92 (-87.62%)
Mutual labels:  spring-data, spring
Springbootsample
spring boot sample source
Stars: ✭ 95 (-87.21%)
Mutual labels:  spring-data, spring

image:https://spring.io/badges/spring-data-rest/ga.svg[Spring Data REST, link="https://projects.spring.io/spring-data-rest/#quick-start"] image:https://spring.io/badges/spring-data-rest/snapshot.svg[Spring Data REST, link="https://projects.spring.io/spring-data-rest/#quick-start"]

= Spring Data REST image:https://jenkins.spring.io/buildStatus/icon?job=spring-data-rest%2Fmaster&subject=Build[link=https://jenkins.spring.io/view/SpringData/job/spring-data-rest/] https://gitter.im/spring-projects/spring-data[image:https://badges.gitter.im/spring-projects/spring-data.svg[Gitter]]

The goal of the project is to provide a flexible and configurable mechanism for writing simple services that can be exposed over HTTP.

The first exporter implemented is a JPA Repository exporter. This takes your JPA repositories and front-ends them with HTTP, allowing you full CRUD capability over your entities, to include managing associations.

== Features

== Code of Conduct

This project is governed by the https://github.com/spring-projects/.github/blob/e3cc2ff230d8f1dca06535aa6b5a4a23815861d4/CODE_OF_CONDUCT.md[Spring Code of Conduct]. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to [email protected].

== Getting Started

Here is a quick teaser of an application using Spring Data REST in Java:

[source,java]

@CrossOrigin @RepositoryRestResource(path = "people") public interface PersonRepository extends CrudRepository<Person, Long> {

List findByLastname(String lastname);

@RestResource(path = "byFirstname") List findByFirstnameLike(String firstname); }

@Configuration @EnableMongoRepositories class ApplicationConfig extends AbstractMongoConfiguration {

@Override public MongoClient mongoClient() { return new MongoClient(); }

@Override protected String getDatabaseName() { return "springdata"; } }

[source,bash]

curl -v "http://localhost:8080/people/search/byFirstname?firstname=Oliver*&sort=name,desc"

=== Maven configuration

Add the Maven dependency:

[source,xml]

org.springframework.data spring-data-rest ${version}.RELEASE ----

If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.

[source,xml]

org.springframework.data spring-data-rest ${version}.BUILD-SNAPSHOT spring-libs-snapshot Spring Snapshot Repository https://repo.spring.io/libs-snapshot ----

== Getting Help

Having trouble with Spring Data? We’d love to help!

== Reporting Issues

Spring Data uses GitHub as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:

  • Before you log a bug, please search the https://github.com/spring-projects/spring-data-rest/issues[issue tracker] to see if someone has already reported the problem.
  • If the issue doesn’t already exist, https://github.com/spring-projects/spring-data-rest/issues[create a new issue].
  • Please provide as much information as possible with the issue report, we like to know the version of Spring Data that you are using and JVM version.
  • If you need to paste code, or include a stack trace use GitHub's flavor of Markdown and wrap your code with triple-backquotes.
  • If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code.

== Building from Source

You don’t need to build from source to use Spring Data (binaries in https://repo.spring.io[repo.spring.io]), but if you want to try out the latest and greatest, Spring Data can be easily built with the https://github.com/takari/maven-wrapper[maven wrapper]. You also need JDK 1.8.

[source,bash]

$ ./mvnw clean install

If you want to build with the regular mvn command, you will need https://maven.apache.org/run-maven/index.html[Maven v3.5.0 or above].

Also see link:CONTRIBUTING.adoc[CONTRIBUTING.adoc] if you wish to submit pull requests, and in particular please sign the https://cla.pivotal.io/sign/spring[Contributor’s Agreement] before your first non-trivial change.

=== Building reference documentation

Building the documentation builds also the project without running tests.

[source,bash]

$ ./mvnw clean install -Pdistribute

The generated documentation is available from target/site/reference/html/index.html.

== Guides

The https://spring.io/[spring.io] site contains several guides that show how to use Spring Data step-by-step:

== Examples

== License

Spring Data REST is Open Source software released under the https://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license].

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].