Registry / serialization / jackson-mapper-asl

jackson-mapper-asl

JSON →
library1.9.13javamavenunverified

High-performance data binding package built on the Jackson JSON processor for converting JSON to and from Java objects.

<dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.13</version> </dependency>
INSTALL
IMPORT
SIG · JACKSON-MAPPER-ASL
J
jackson-mapper-asl
serializationjavav1.9.13
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ObjectMapper
org.codehaus.jackson.map.ObjectMapper

Deserialize JSON to a Java object using ObjectMapper

import org.codehaus.jackson.map.ObjectMapper; public class Main { public static void main(String[] args) throws Exception { ObjectMapper mapper = new ObjectMapper(); String json = "{\"name\":\"John\"}"; MyClass obj = mapper.readValue(json, MyClass.class); System.out.println(obj.getName()); } }
Debug
Known issues
breakingThis is an older version of Jackson (1.x). Consider migrating to Jackson 2.x (com.fasterxml.jackson) for active development and security patches.
fix
Replace org.codehaus.jackson with com.fasterxml.jackson.core:jackson-databind and update imports accordingly.
affects: <=1.9.13
Upgrade
Version history
1.9.13latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
jackson-mapper-asl — mvn dependency:get jackson-mapper-asl · libregistry