Spring Data REST

Directly export Spring Data managed JPA Entities to the web.

Лицензия

Лицензия

Категории

Категории

Данные
Группа

Группа

org.springframework.data
Идентификатор

Идентификатор

spring-data-rest-repository
Последняя версия

Последняя версия

1.0.0.RELEASE
Дата

Дата

Тип

Тип

jar
Описание

Описание

Spring Data REST
Directly export Spring Data managed JPA Entities to the web.
Ссылка на сайт

Ссылка на сайт

http://github.com/SpringSource/spring-data-rest
Организация-разработчик

Организация-разработчик

SpringSource
Система контроля версий

Система контроля версий

http://github.com/SpringSource/spring-data-rest

Скачать spring-data-rest-repository

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.springframework.data/spring-data-rest-repository/ -->
<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-rest-repository</artifactId>
    <version>1.0.0.RELEASE</version>
</dependency>
// https://jarcasting.com/artifacts/org.springframework.data/spring-data-rest-repository/
implementation 'org.springframework.data:spring-data-rest-repository:1.0.0.RELEASE'
// https://jarcasting.com/artifacts/org.springframework.data/spring-data-rest-repository/
implementation ("org.springframework.data:spring-data-rest-repository:1.0.0.RELEASE")
'org.springframework.data:spring-data-rest-repository:jar:1.0.0.RELEASE'
<dependency org="org.springframework.data" name="spring-data-rest-repository" rev="1.0.0.RELEASE">
  <artifact name="spring-data-rest-repository" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.springframework.data', module='spring-data-rest-repository', version='1.0.0.RELEASE')
)
libraryDependencies += "org.springframework.data" % "spring-data-rest-repository" % "1.0.0.RELEASE"
[org.springframework.data/spring-data-rest-repository "1.0.0.RELEASE"]

Зависимости

compile (12)

Идентификатор библиотеки Тип Версия
org.springframework : spring-orm jar 3.1.2.RELEASE
org.springframework.data : spring-data-jpa jar 1.2.0.RELEASE
org.springframework : spring-core jar 3.1.2.RELEASE
org.springframework.hateoas : spring-hateoas jar 0.3.0.RELEASE
org.springframework : spring-web jar 3.1.2.RELEASE
org.springframework.data : spring-data-rest-core jar 1.0.0.RELEASE
org.hibernate.javax.persistence : hibernate-jpa-2.0-api jar 1.0.1.Final
org.springframework : spring-tx jar 3.1.2.RELEASE
org.codehaus.jackson : jackson-mapper-asl jar 1.9.10
org.springframework : spring-beans jar 3.1.2.RELEASE
org.springframework : spring-context jar 3.1.2.RELEASE
org.slf4j : slf4j-api jar 1.6.6

runtime (3)

Идентификатор библиотеки Тип Версия
cglib : cglib-nodep jar 2.2.2
ch.qos.logback : logback-classic jar 1.0.6
org.slf4j : jcl-over-slf4j jar 1.6.6

Модули Проекта

Данный проект не имеет модулей.

Spring Data REST Spring Data REST

Spring Data REST icon?job=spring data rest%2Fmaster&subject=Build 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 Spring Code of Conduct. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to spring-code-of-conduct@pivotal.io.

Getting Started

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

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

  List<Person> findByLastname(String lastname);

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

@Configuration
@EnableMongoRepositories
class ApplicationConfig extends AbstractMongoConfiguration {

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

  @Override
  protected String getDatabaseName() {
    return "springdata";
  }
}
curl -v "http://localhost:8080/people/search/byFirstname?firstname=Oliver*&sort=name,desc"

Maven configuration

Add the Maven dependency:

<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-rest</artifactId>
  <version>${version}.RELEASE</version>
</dependency>

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

<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-rest</artifactId>
  <version>${version}.BUILD-SNAPSHOT</version>
</dependency>

<repository>
  <id>spring-libs-snapshot</id>
  <name>Spring Snapshot Repository</name>
  <url>https://repo.spring.io/libs-snapshot</url>
</repository>

Getting Help

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

Reporting Issues

Spring Data uses JIRA 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 issue tracker to see if someone has already reported the problem.

  • If the issue doesn’t already exist, 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 JIRA {code}…{code} escapes before and after your text.

  • 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 repo.spring.io), but if you want to try out the latest and greatest, Spring Data can be easily built with the maven wrapper. You also need JDK 1.8.

 $ ./mvnw clean install

If you want to build with the regular mvn command, you will need Maven v3.5.0 or above.

Also see CONTRIBUTING.adoc if you wish to submit pull requests, and in particular please sign the Contributor’s Agreement before your first non-trivial change.

Building reference documentation

Building the documentation builds also the project without running tests.

 $ ./mvnw clean install -Pdistribute

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

Guides

The 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 Apache 2.0 license.

org.springframework.data

Версии библиотеки

Версия
1.0.0.RELEASE