我目前正在使用泽西返回
JSON.如何返回
JSONP?例如,我目前的RESTful方法是:
@GET @Produces(MediaType.APPLICATION_JSON) public List<Order> getOrders() { return OrderRepository.getOrders(); }
我想在Tomcat上部署(不想要使用GlassFish).我唯一的依赖泽西是:
<dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-json</artifactId> <version>1.9.1</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> <version>1.9.1</version> </dependency>
需要什么额外的依赖代码如何改变?
谢谢.
纳雷什
看看泽西州的
JSONP示例(特别是
ChangeList资源)(您可以下载整个项目
here).
原文链接:https://www.f2er.com/json/288447.html你基本上需要做的就是这样:
@GET @Produces(MediaType.APPLICATION_JSON) public JSONWithPadding getOrders() { return new JSONWithPadding(new GenericEntity<List<Order>>(OrderRepository.getOrders()){}); }