Download spring-data-rest-webmvc-2.0.1.release.jar file

Introduction

You can download spring-data-rest-webmvc-2.0.1.release.jar in this page.

License

The Apache Software License, Version 2.0

Type List

spring-data-rest-webmvc-2.0.1.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.ControllerUtils.class
org.springframework.data.rest.webmvc.PersistentEntityResource.class
org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler.class
org.springframework.data.rest.webmvc.PersistentEntityResourceHandlerMethodArgumentResolver.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.ResourceMetadataHandlerMethodArgumentResolver.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.RootResourceInformation.class
org.springframework.data.rest.webmvc.RootResourceInformationHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.ServerHttpRequestMethodArgumentResolver.class
org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration.class
org.springframework.data.rest.webmvc.convert.UriListHttpMessageConverter.class
org.springframework.data.rest.webmvc.json.Jackson2DatatypeHelper.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.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.ExceptionMessage.class
org.springframework.data.rest.webmvc.support.HttpMethodHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.support.HttpRequestUtils.class
org.springframework.data.rest.webmvc.support.JpaHelper.class
org.springframework.data.rest.webmvc.support.PersistentEntityResourceProcessor.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.support.ValidationExceptionHandler.class
org.springframework.data.rest.webmvc.util.UriUtils.class

Pom

spring-data-rest-webmvc-2.0.1.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.0.1.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>
		
		<!-- 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>
		
		<!-- Jackson -->
		
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</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>
		
		<!-- Test dependencies -->
		
		<dependency>
			<groupId>com.jayway.jsonpath</groupId>
			<artifactId>json-path</artifactId>
			<version>${jsonpath}</version>
			<scope>test</scope>
		</dependency>
		
	</dependencies>

</project>

POM Entry

<dependency>
   <groupId>org.springframework.data</groupId>
   <artifactId>spring-data-rest-webmvc</artifactId>
   <version>2.0.1.release</version>
</dependency>

Download

If you think the following spring-data-rest-webmvc-2.0.1.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.0.1.release.jar file




PreviousNext

Related