What are the API that does implement JSR
I just found out that Jackson does not implement JSR-353 and we already designed the module.. so i am in a desperate hurry to find a replacement of this API to begin working ! :D
I searched an API that implements the standard but could not find any interesting result because we plan to code with the standard and force the system to use a particular implementation (the API i am desperately searching for)
这是JRS 353参考实现:https://javaee.github.io/jsonp/
The Genson
library claims to implement JSR-353.
https://code.google.com/p/genson/wiki/JSR353
I haven't tried this one myself though. I was recently also looking for a good JSON library, I tried 3 of them and finally settled with using Jackson as it best served my needs. The different thing is that I wasn't looking for a library which precisely implements the standard, I was just looking for something which is simple and does what I wanted it to do.
You can check Gson
too, I guess (though it's not directly related to JSR-353).
https://code.google.com/p/google-gson/
链接地址: http://www.djcxy.com/p/29958.html上一篇: 什么是解析JSON的代码?
下一篇: 什么是实现JSR的API