Data Mapper for Jackson.
Data Mapper package is a high-performance data binding package built on Jackson JSON processor.
Here is the list of declaration for jackson-mapper-asl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.2</version> </dependency>
If you think this Maven repository POM file listing for jackson-mapper-asl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The jackson-mapper-asl-1.9.2 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JSON | jackson-core-asl 1.9.2 Jackson is a high-performance JSON processor (parser, generator) | 164 |
The following table lists the most popular artifacts which are depending on jackson-mapper-asl-1.9.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Network | astyanax-thrift 1.56.43 astyanax-thrift developed by Netflix | 5 |
Network | astyanax-thrift 1.56.48 astyanax-thrift developed by Netflix | 6 |
XML Parser | jackson-xml-databind 0.6.2 Extension for Jackson (http://jackson.codehaus.org) to offer alternative support for serializing POJOs as XML and deserializing XML as pojos. Support implemented on top of Stax API (javax.xml.stream), by implementing core Jackson Streaming API types like JsonGenerator, JsonParser and JsonFactory. S... | 6 |
Network | astyanax 1.56.48 astyanax developed by Netflix | 10 |
Spring | spring-integration-core 2.2.3.RELEASE Spring Integration Core | 9 |
Network | astyanax-core 1.56.48 astyanax-core developed by Netflix | 7 |
Network | astyanax-core 1.56.43 astyanax-core developed by Netflix | 6 |
Network | astyanax-core 1.56.49 astyanax-core developed by Netflix | 6 |
Spring | spring-integration-core 2.2.4.RELEASE Spring Integration Core | 8 |
Network | astyanax-core 2.0.2 astyanax-core developed by Netflix | 10 |
Document Database | cassandra-all 2.0.4 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 9 |
Network | astyanax-thrift 2.0.2 astyanax-thrift developed by Netflix | 7 |
Network | astyanax 1.56.44 astyanax developed by Netflix | 5 |
Network | astyanax-thrift 2.0.1 astyanax-thrift developed by Netflix | 7 |
Document Database | astyanax-cassandra 1.56.44 astyanax-cassandra developed by Netflix | 6 |
Spring | spring-integration-core 2.2.6.RELEASE Spring Integration Core | 10 |
Network | astyanax-core 1.56.44 astyanax-core developed by Netflix | 7 |
Document Database | astyanax-cassandra 2.0.0 astyanax-cassandra developed by Netflix | 8 |
Document Database | cassandra-all 1.2.6 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 12 |
JUnit | junit-benchmarks 0.7.2 A framework for writing performance micro-benchmarks using JUnit4 annotations. | 5 |
Document Database | astyanax-cassandra 1.56.37 astyanax-cassandra developed by Netflix | 9 |
Document Database | cassandra-all 1.2.11 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 32 |
Network | astyanax 1.56.23 astyanax developed by Netflix | 6 |
Document Database | astyanax-cassandra 1.56.48 astyanax-cassandra developed by Netflix | 8 |
Web Service | jackson-jaxrs 1.9.2 Jax-RS provider for JSON content type, based on Jackson JSON processor's data binding functionality. | 8 |
Network | astyanax-thrift 1.56.37 astyanax-thrift developed by Netflix | 8 |
Document Database | cassandra-all 1.1.5 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 5 |
Network | astyanax 1.56.24 astyanax developed by Netflix | 13 |
The following packages are defined in the jackson-mapper-asl-1.9.2.jar
org.codehaus.jackson.map org.codehaus.jackson.map.annotate org.codehaus.jackson.map.deser org.codehaus.jackson.map.deser.impl org.codehaus.jackson.map.deser.std org.codehaus.jackson.map.exc org.codehaus.jackson.map.ext org.codehaus.jackson.map.introspect org.codehaus.jackson.map.jsontype org.codehaus.jackson.map.jsontype.impl org.codehaus.jackson.map.module org.codehaus.jackson.map.ser org.codehaus.jackson.map.ser.impl org.codehaus.jackson.map.ser.std org.codehaus.jackson.map.type org.codehaus.jackson.map.util org.codehaus.jackson.node org.codehaus.jackson.schema
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project> <!-- General information --> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <packaging>jar</packaging> <name>Data Mapper for Jackson</name> <version>1.9.2</version> <description>Data Mapper package is a high-performance data binding package built on Jackson JSON processor </description> <!-- Contact information --> <url>http://jackson.codehaus.org</url> <issueManagement> <url>http://jira.codehaus.org/browse/JACKSON</url> </issueManagement> <!-- Dependency information --> <dependencies> <!-- need the core Jackson parser/generator jar --> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> <version>1.9.2</version> </dependency> </dependencies> <!-- Licensing (joy!) --> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>FasterXML</name> <url>http://fasterxml.com</url> </organization> </project>