WebService 返回 XML/JSON 文件

发布于 2024-12-17 19:39:29 字数 205 浏览 0 评论 0原文

我需要编写一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开柳相依 2024-12-24 19:39:29

您可以使用 JAX-RS 执行以下操作:

package org.example;

import java.util.List;

import javax.ejb.*;
import javax.persistence.*;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;

@Stateless
@LocalBean
@Path("/customers")
public class CustomerService {

    @PersistenceContext(unitName="CustomerService",
                        type=PersistenceContextType.TRANSACTION)
    EntityManager entityManager;


    @GET
    @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
    @Path("{id}")
    public Customer read(@PathParam("id") long id) {
        return entityManager.find(Customer.class, id);
    }

}

完整示例

You could do something like the following with JAX-RS:

package org.example;

import java.util.List;

import javax.ejb.*;
import javax.persistence.*;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;

@Stateless
@LocalBean
@Path("/customers")
public class CustomerService {

    @PersistenceContext(unitName="CustomerService",
                        type=PersistenceContextType.TRANSACTION)
    EntityManager entityManager;


    @GET
    @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
    @Path("{id}")
    public Customer read(@PathParam("id") long id) {
        return entityManager.find(Customer.class, id);
    }

}

Full Example

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文