You can download spring-data-rest-webmvc-2.2.0.release.jar in this page.
The Apache Software License, Version 2.0
spring-data-rest-webmvc-2.2.0.release.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.springframework.data/spring-data-rest-webmvc/pom.properties META-INF/maven/org.springframework.data/spring-data-rest-webmvc/pom.xml org.springframework.data.rest.webmvc.AbstractRepositoryRestController.class org.springframework.data.rest.webmvc.BaseUri.class org.springframework.data.rest.webmvc.ControllerUtils.class org.springframework.data.rest.webmvc.IncomingRequest.class org.springframework.data.rest.webmvc.PersistentEntityResource.class org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler.class org.springframework.data.rest.webmvc.RepositoryController.class org.springframework.data.rest.webmvc.RepositoryEntityController.class org.springframework.data.rest.webmvc.RepositoryLinksResource.class org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.class org.springframework.data.rest.webmvc.RepositoryRestController.class org.springframework.data.rest.webmvc.RepositoryRestDispatcherServlet.class org.springframework.data.rest.webmvc.RepositoryRestHandlerAdapter.class org.springframework.data.rest.webmvc.RepositoryRestHandlerMapping.class org.springframework.data.rest.webmvc.RepositorySchemaController.class org.springframework.data.rest.webmvc.RepositorySearchController.class org.springframework.data.rest.webmvc.ResourceNotFoundException.class org.springframework.data.rest.webmvc.ResourceProcessorHandlerMethodReturnValueHandler.class org.springframework.data.rest.webmvc.ResourceProcessorInvokingHandlerAdapter.class org.springframework.data.rest.webmvc.ResourceType.class org.springframework.data.rest.webmvc.RestMediaTypes.class org.springframework.data.rest.webmvc.RootResourceInformation.class org.springframework.data.rest.webmvc.ServerHttpRequestMethodArgumentResolver.class org.springframework.data.rest.webmvc.alps.AlpsController.class org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter.class org.springframework.data.rest.webmvc.alps.AlpsResourceProcessor.class org.springframework.data.rest.webmvc.alps.RootResourceInformationToAlpsDescriptorConverter.class org.springframework.data.rest.webmvc.config.JsonPatchHandler.class org.springframework.data.rest.webmvc.config.PersistentEntityResourceAssemblerArgumentResolver.class org.springframework.data.rest.webmvc.config.PersistentEntityResourceHandlerMethodArgumentResolver.class org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration.class org.springframework.data.rest.webmvc.config.ResourceMetadataHandlerMethodArgumentResolver.class org.springframework.data.rest.webmvc.config.RootResourceInformationHandlerMethodArgumentResolver.class org.springframework.data.rest.webmvc.convert.StringToDistanceConverter.class org.springframework.data.rest.webmvc.convert.StringToPointConverter.class org.springframework.data.rest.webmvc.convert.UriListHttpMessageConverter.class org.springframework.data.rest.webmvc.json.DomainObjectReader.class org.springframework.data.rest.webmvc.json.Jackson2DatatypeHelper.class org.springframework.data.rest.webmvc.json.JacksonMetadata.class org.springframework.data.rest.webmvc.json.JsonSchema.class org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module.class org.springframework.data.rest.webmvc.json.PersistentEntityToJsonSchemaConverter.class org.springframework.data.rest.webmvc.mapping.AssociationLinks.class org.springframework.data.rest.webmvc.mapping.LinkCollectingAssociationHandler.class org.springframework.data.rest.webmvc.mapping.PropertyMappings.class org.springframework.data.rest.webmvc.spi.BackendIdConverter.class org.springframework.data.rest.webmvc.support.BackendId.class org.springframework.data.rest.webmvc.support.BackendIdHandlerMethodArgumentResolver.class org.springframework.data.rest.webmvc.support.BaseUriLinkBuilder.class org.springframework.data.rest.webmvc.support.ConstraintViolationExceptionMessage.class org.springframework.data.rest.webmvc.support.ConstraintViolationMessage.class org.springframework.data.rest.webmvc.support.DefaultedPageable.class org.springframework.data.rest.webmvc.support.DefaultedPageableHandlerMethodArgumentResolver.class org.springframework.data.rest.webmvc.support.ExceptionMessage.class org.springframework.data.rest.webmvc.support.HttpMethodHandlerMethodArgumentResolver.class org.springframework.data.rest.webmvc.support.JpaHelper.class org.springframework.data.rest.webmvc.support.PersistentEntityProjector.class org.springframework.data.rest.webmvc.support.PersistentEntityResourceProcessor.class org.springframework.data.rest.webmvc.support.Projector.class org.springframework.data.rest.webmvc.support.RepositoryConstraintViolationExceptionMessage.class org.springframework.data.rest.webmvc.support.RepositoryEntityLinks.class org.springframework.data.rest.webmvc.support.RepositoryLinkBuilder.class org.springframework.data.rest.webmvc.util.UriUtils.class rest-default-messages.properties
spring-data-rest-webmvc-2.2.0.release.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <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-rest-webmvc</artifactId> <name>Spring Data REST - WebMVC</name> <description>Spring Data REST - WebMVC</description> <parent> <groupId>org.springframework.data</groupId> <artifactId>spring-data-rest-parent</artifactId> <version>2.2.0.RELEASE</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <jsonpath>0.8.1</jsonpath> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>spring-data-rest-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <!-- Jackson --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson}</version> </dependency> <!-- Jackson Hibernate --> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-hibernate4</artifactId> <version>${jackson}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernate.version}</version> <optional>true</optional> </dependency> <!-- Jackson JodaTime --> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-joda</artifactId> <version>${jackson}</version> <optional>true</optional> </dependency> <!-- JSON patch --> <dependency> <groupId>com.github.fge</groupId> <artifactId>json-patch</artifactId> <version>1.7</version> </dependency> <!-- Optional store specifics --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> <version>1.0.1.Final</version> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>${jsonpath}</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-rest-webmvc</artifactId> <version>2.2.0.release</version> </dependency>
If you think the following spring-data-rest-webmvc-2.2.0.release.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download spring-data-rest-webmvc-2.2.0.release.jar file