[Building Sakai] Any Comments on org.codehaus.jackson ??

Zach A. Thomas zach.thomas at gmail.com
Wed Jun 19 08:11:39 PDT 2013


Two comments:

1) Jackson is the best/fastest JSON reader/writer and Object/JSON mapper. I would love to see us standardize on this. I am using in my own EntityProviders for output.
2) That's an older version you're using. The up-to-date dependencies would be these:

<dependency>
  <groupId>com.fasterxml.jackson.core</groupId>
  <artifactId>jackson-core</artifactId>
  <version>2.2.2</version>
</dependency>

<dependency>
  <groupId>com.fasterxml.jackson.core</groupId>
  <artifactId>jackson-databind</artifactId>
  <version>2.2.2</version>
</dependency>
On Jun 19, 2013, at 9:36 AM, Charles Severance <csev at umich.edu> wrote:

> It looks like in my building of LTI 2.0 I will be using org.codehaus.jackson as I will be doing a pattern where I build POJOs for things like the Tool Consumer Profile and serialize them to JSON using Jackson.
> 
> Here is my dependency:
> 
>    <dependency>
>        <groupId>org.codehaus.jackson</groupId>
>        <artifactId>jackson-mapper-asl</artifactId>
>        <version>1.8.5</version>
>    </dependency>
> 
> Grepping the core code - this looks like the first time anyone has used jackson.  Does anyone have any suggestions / comments pro or con regarding jackson?
> 
> /Chuck
> _______________________________________________
> sakai-dev mailing list
> sakai-dev at collab.sakaiproject.org
> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
> 
> TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at collab.sakaiproject.org with a subject of "unsubscribe"



More information about the sakai-dev mailing list