WebService 返回 XML/JSON 文件
我需要编写一个简单的 java web 服务,它可以以 XML/JSON 文件的形式显示其输出。
例如,用户单击链接或按钮,将执行一个简单的 SQL 语句 SELECT * FROM PERSON,上述 SQL 查询的结果应以 XML/JSON 文件的形式显示。
我已经用谷歌搜索了好几次,但未能找到合适的教程或示例代码。有人可以通过提供示例代码或教程来帮助我吗?
I require to write a simple java webservice that could show its output in the form of a XML/JSON file.
For example the user will click a link or a button, and a simple SQL statement would get executed SELECT * FROM PERSON
and the result of the above SQL query should be displayed in the form a XML/JSON file.
I have googled this several times but failed to find a suitable tutorial or a sample code. Can some one help me by providing a sample code or a tutorial that would help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JAX-RS 执行以下操作:
完整示例
You could do something like the following with JAX-RS:
Full Example