Building a JSON web service with Java and Axis2

Building a JSON web service with Java and Axis2

January 23rd, 2009 · 9 Comments

It is said that in Java usually the easiest things are the hardest. The following is a nice example as it took me some time to figure out how to do it.
I wanted to build a simple URL request based web service in Java that returns an JSON object. Yes, you can do that with a simple Servlet too, the advantage of using Axis2 is that you can also call your deployed services using SOAP without any configuration changes.

  1. Download Axis2 as WAR and install it in your servlet container
  2. Download the DynamicResponseHandler module and add it to Axis by copying it to WEB-INF/modules
  3. Patch Jettison or download my patched version and replace it with the one installed in WEB-INF/lib
  4. Add the DynamicResponseHandler module reference to the axis2.xml configuration (located in WEB-INF/conf):
    <module ref="DynamicResponseHandler"/>
  5. Add the JSON Message formatters to the axis2.xml:
    <messageFormatter contentType="application/json" class="org.apache.axis2.json.JSONMessageFormatter"/>
    <messageFormatter contentType="application/json/badgerfish" class="org.apache.axis2.json.JSONBadgerfishMessageFormatter"/>
  6. Add JSON Message builders to the axis2.xml:
    <messageBuilder contentType="application/json" class="org.apache.axis2.json.JSONOMBuilder"/>
    <messageBuilder contentType="application/json/badgerfish" class="org.apache.axis2.json.JSONBadgerfishOMBuilder"/>
  7. Start your servlet container and test the standard version service by calling this url:
    http://localhost:8080/axis2/services/Version/getVersion?response=application/json

Now you are ready to add your own web services. Here you can find an example how to deploy a simple POJO service. Have fun!

Update: Zeno (see comments) sent me patch for usage with Jettison 1.2 – otherwise he received a NullPointerException. I haven’t checked it, but I hope it helps you! Thanks Zeno!


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值