组织ID: |
org.springframework.data |
项目ID: |
spring-data-rest-webmvc |
版本: |
2.4.6.RELEASE |
最后修改时间: |
2018-11-14 17:18:57 |
包类型: |
jar |
标题: |
Spring Data REST - WebMVC |
描述: |
Spring Data REST - WebMVC |
大小: |
228.13KB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-webmvc</artifactId>
<version>2.4.6.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.data:spring-data-rest-webmvc:2.4.6.RELEASE
|
下载Jar包: |
|
POM文件内容: |
<?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.4.6.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<jsonpath>0.9.1</jsonpath>
<cassandra.version>2.0.9</cassandra.version>
<cassandraunit.version>2.0.2.1</cassandraunit.version>
<spring-security.version>4.0.1.RELEASE</spring-security.version>
<groovy.version>2.4.4</groovy.version>
</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>
<!-- Querydsl -->
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-core</artifactId>
<version>${querydsl}</version>
<optional>true</optional>
</dependency>
<!-- Optional store specifics -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.0.0</version>
<optional>true</optional>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>${jsonpath}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>unifying</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<!-- Neo4j VS. Solr -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>neo4j</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>${springdata.neo4j}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>gemfire</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-gemfire</artifactId>
<version>${springdata.gemfire}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>cassandra</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-cassandra</artifactId>
<version>${springdata.cassandra}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
<version>${cassandra.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.cassandraunit</groupId>
<artifactId>cassandra-unit-spring</artifactId>
<version>${cassandraunit.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
</exclusion>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.0.1</version>
<scope>test</scope>
</dependency>
<!-- Declare Antlr locally to favor this one as Solr pulls in 3.5 which breaks Cassandra -->
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<version>3.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>solr</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-solr</artifactId>
<version>${springdata.solr}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-core</artifactId>
<version>4.10.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<artifactId>jdk.tools</artifactId>
<groupId>jdk.tools</groupId>
</exclusion>
<exclusion>
<groupId>com.google</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</profile>
<profile>
<id>spring-security</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${spring-security.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring-security.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${spring-security.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<version>${spring-security.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>default-test</id>
<configuration>
<excludes>
<exclude>**/*</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>base-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/*Test*.java</include>
</includes>
<!-- exclude store-specific tests from base-tests -->
<excludes>
<exclude>**/cassandra/*Test*.java</exclude>
<exclude>**/gemfire/*Test*.java</exclude>
<exclude>**/jpa/*Test*.java</exclude>
<exclude>**/mongodb/*Test*.java</exclude>
<exclude>**/neo4j/*Test*.java</exclude>
<exclude>**/solr/*Test*.java</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>cassandra-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/cassandra/*Test*.java</include>
</includes>
</configuration>
</execution>
<execution>
<id>gemfire-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/gemfire/*Test*.java</include>
</includes>
</configuration>
</execution>
<execution>
<id>jpa-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/jpa/*Test*.java</include>
</includes>
</configuration>
</execution>
<execution>
<id>mongodb-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/mongodb/*Test*.java</include>
</includes>
</configuration>
</execution>
<execution>
<id>neo4j-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/neo4j/*Test*.java</include>
</includes>
</configuration>
</execution>
<execution>
<id>solr-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/solr/*Test*.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>${apt}</version>
<dependencies>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<version>${querydsl}</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>generate-test-sources</phase>
<goals>
<goal>test-process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-sources/annotations</outputDirectory>
<processor>org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor</processor>
<logOnlyOnError>true</logOnlyOnError>
<options>
<querydsl.excludedPackages>org.springframework.data.rest.webmvc.mongodb.groovy,groovy.lang</querydsl.excludedPackages>
</options>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.springframework.data.rest.webmvc.ResourceProcessorHandlerMethodReturnValueHandler$ResourcesProcessorWrapper.class
org.springframework.data.rest.webmvc.config.RepositoryRestConfigurerDelegate.class
org.springframework.data.rest.webmvc.config.RootResourceInformationHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration$ResourceSupportHttpMessageConverter.class
org.springframework.data.rest.webmvc.config.PersistentEntityResourceAssemblerArgumentResolver.class
org.springframework.data.rest.webmvc.config.ArgumentResolverPagingAndSortingTemplateVariables.class
org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration.class
org.springframework.data.rest.webmvc.config.PersistentEntityResourceHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.config.RepositoryRestConfigurer.class
org.springframework.data.rest.webmvc.config.QuerydslAwareRootResourceInformationHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.config.JsonPatchHandler.class
org.springframework.data.rest.webmvc.config.RepositoryRestConfigurerAdapter.class
org.springframework.data.rest.webmvc.config.ResourceMetadataHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.BasePathAwareController.class
org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.class
org.springframework.data.rest.webmvc.RepositoryRestController.class
org.springframework.data.rest.webmvc.support.ConstraintViolationMessage.class
org.springframework.data.rest.webmvc.support.ETagArgumentResolver.class
org.springframework.data.rest.webmvc.support.BaseUriLinkBuilder.class
org.springframework.data.rest.webmvc.support.Projector.class
org.springframework.data.rest.webmvc.support.DelegatingHandlerMapping.class
org.springframework.data.rest.webmvc.support.PersistentEntityProjector.class
org.springframework.data.rest.webmvc.support.HttpMethodHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.support.BackendId.class
org.springframework.data.rest.webmvc.support.PersistentEntityResourceProcessor$1.class
org.springframework.data.rest.webmvc.support.RepositoryConstraintViolationExceptionMessage$ValidationError.class
org.springframework.data.rest.webmvc.support.DefaultedPageable.class
org.springframework.data.rest.webmvc.support.ETag.class
org.springframework.data.rest.webmvc.support.JpaHelper.class
org.springframework.data.rest.webmvc.support.PersistentEntityResourceProcessor$DomainTypeResourceProcessor.class
org.springframework.data.rest.webmvc.support.ExceptionMessage.class
org.springframework.data.rest.webmvc.support.PagingAndSortingTemplateVariables.class
org.springframework.data.rest.webmvc.support.BackendIdHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.support.RepositoryLinkBuilder.class
org.springframework.data.rest.webmvc.support.DefaultedPageableHandlerMethodArgumentResolver.class
org.springframework.data.rest.webmvc.support.PersistentEntityResourceProcessor.class
org.springframework.data.rest.webmvc.support.ETagDoesntMatchException.class
org.springframework.data.rest.webmvc.support.RepositoryEntityLinks.class
org.springframework.data.rest.webmvc.support.RepositoryConstraintViolationExceptionMessage.class
org.springframework.data.rest.webmvc.support.ConstraintViolationExceptionMessage.class
org.springframework.data.rest.webmvc.RepositorySchemaController.class
org.springframework.data.rest.webmvc.PersistentEntityResource$Builder.class
org.springframework.data.rest.webmvc.ResourceProcessorHandlerMethodReturnValueHandler$CustomOrderAwareComparator.class
org.springframework.data.rest.webmvc.PersistentEntityResource$NoLinksResources.class
org.springframework.data.rest.webmvc.RepositoryLinksResource.class
org.springframework.data.rest.webmvc.spi.BackendIdConverter.class
org.springframework.data.rest.webmvc.spi.BackendIdConverter$DefaultIdConverter.class
org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler.class
org.springframework.data.rest.webmvc.AbstractRepositoryRestController.class
org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController$4.class
org.springframework.data.rest.webmvc.ResourceProcessorHandlerMethodReturnValueHandler.class
org.springframework.data.rest.webmvc.PersistentEntityResource.class
org.springframework.data.rest.webmvc.ResourceProcessorInvokingHandlerAdapter.class
org.springframework.data.rest.webmvc.ResourceProcessorHandlerMethodReturnValueHandler$ResourceProcessorWrapper.class
org.springframework.data.rest.webmvc.ServerHttpRequestMethodArgumentResolver.class
org.springframework.data.rest.webmvc.IncomingRequest.class
org.springframework.data.rest.webmvc.ProfileResourceProcessor.class
org.springframework.data.rest.webmvc.PersistentEntityResource$1.class
org.springframework.data.rest.webmvc.BasePathAwareHandlerMapping$UriAwareHttpServletRequest.class
org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController$3.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$ProjectionSerializer.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$CollectionValueInstantiator.class
org.springframework.data.rest.webmvc.json.DomainObjectReader.class
org.springframework.data.rest.webmvc.json.JsonSchema$Definitions.class
org.springframework.data.rest.webmvc.json.PersistentEntityToJsonSchemaConverter$DefaultingMessageSourceResolvable.class
org.springframework.data.rest.webmvc.json.PersistentEntityToJsonSchemaConverter$ResolvableProperty.class
org.springframework.data.rest.webmvc.json.JsonSchema$Item.class
org.springframework.data.rest.webmvc.json.Jackson2DatatypeHelper$JodaModuleRegistrar.class
org.springframework.data.rest.webmvc.json.DomainObjectReader$MappedProperties.class
org.springframework.data.rest.webmvc.json.JsonSchema.class
org.springframework.data.rest.webmvc.json.JacksonSerializers$EnumTranslatingSerializer.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$PersistentEntityResourceSerializer.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$ProjectionResource.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$PersistentEntityResourceSerializer$1.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$UriStringDeserializer.class
org.springframework.data.rest.webmvc.json.DomainObjectReader$1.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module.class
org.springframework.data.rest.webmvc.json.JsonSchema$EnumProperty.class
org.springframework.data.rest.webmvc.json.JsonSchema$AbstractJsonSchemaProperty.class
org.springframework.data.rest.webmvc.json.JsonSchemaPropertyCustomizer.class
org.springframework.data.rest.webmvc.json.EnumTranslator.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$AssociationOmittingSerializerModifier.class
org.springframework.data.rest.webmvc.json.Jackson2DatatypeHelper$Hibernate4Checker.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$1.class
org.springframework.data.rest.webmvc.json.JsonSchema$JsonSchemaProperty.class
org.springframework.data.rest.webmvc.json.PersistentEntityToJsonSchemaConverter$ResolvableType.class
org.springframework.data.rest.webmvc.json.JacksonSerializers.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$ProjectionResourceContent.class
org.springframework.data.rest.webmvc.json.PersistentEntityToJsonSchemaConverter.class
org.springframework.data.rest.webmvc.json.PersistentEntityToJsonSchemaConverter$JsonSchemaPropertyRegistrar.class
org.springframework.data.rest.webmvc.json.JacksonMetadata.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$AssociationUriResolvingDeserializerModifier.class
org.springframework.data.rest.webmvc.json.JacksonSerializers$EnumTranslatingDeserializer.class
org.springframework.data.rest.webmvc.json.Jackson2DatatypeHelper$Hibernate4ModuleRegistrar.class
org.springframework.data.rest.webmvc.json.JsonSchema$PropertiesContainer.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$ProjectionResourceContentSerializer.class
org.springframework.data.rest.webmvc.json.Jackson2DatatypeHelper.class
org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module$LinkCollector.class
org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController$ReferencedProperty.class
org.springframework.data.rest.webmvc.RootResourceInformation.class
org.springframework.data.rest.webmvc.RepositoryEntityController.class
org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler$1.class
org.springframework.data.rest.webmvc.mapping.AssociationLinks.class
org.springframework.data.rest.webmvc.mapping.LinkCollectingAssociationHandler.class
org.springframework.data.rest.webmvc.ResourceProcessorHandlerMethodReturnValueHandler$DefaultProcessorWrapper.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
spring-data-rest-core-${project.version}.jar
/${project.groupId}/spring-data-rest-core/${project.version}
查看spring-data-rest-core所有版本文件
javax.servlet-api-3.0.1.jar
/javax.servlet/javax.servlet-api/3.0.1
查看javax.servlet-api所有版本文件
jackson-databind-${jackson}.jar
/com.fasterxml.jackson.core/jackson-databind/${jackson}
查看jackson-databind所有版本文件
jackson-annotations-${jackson}.jar
/com.fasterxml.jackson.core/jackson-annotations/${jackson}
查看jackson-annotations所有版本文件
jackson-datatype-hibernate4-${jackson}.jar
/com.fasterxml.jackson.datatype/jackson-datatype-hibernate4/${jackson}
查看jackson-datatype-hibernate4所有版本文件
hibernate-core-${hibernate.version}.jar
/org.hibernate/hibernate-core/${hibernate.version}
查看hibernate-core所有版本文件
jackson-datatype-joda-${jackson}.jar
/com.fasterxml.jackson.datatype/jackson-datatype-joda/${jackson}
查看jackson-datatype-joda所有版本文件
json-patch-1.7.jar
/com.github.fge/json-patch/1.7
查看json-patch所有版本文件
querydsl-core-${querydsl}.jar
/com.mysema.querydsl/querydsl-core/${querydsl}
查看querydsl-core所有版本文件
javax.persistence-2.0.0.jar
/org.eclipse.persistence/javax.persistence/2.0.0
查看javax.persistence所有版本文件
json-path-${jsonpath}.jar
/com.jayway.jsonpath/json-path/${jsonpath}
查看json-path所有版本文件
groovy-all-${groovy.version}.jar
/org.codehaus.groovy/groovy-all/${groovy.version}
查看groovy-all所有版本文件
|