我想用JAX-RS和Jersey创建一个REST服务,用于消费JSON结构。
我使用org.glassfish.jersey和gradle,所以我插入了gradle-build文件。
compile group: 'org.glassfish.jersey.containers', name: 'jersey-container-servlet-core', version: '2.26-b03'
compile group: 'org.glassfish.jersey.media', name: 'jersey-media-multipart', version: '2.26-b03'
compile group: 'org.glassfish.jersey.core', name: 'jersey-common', version: '2.26-b03'
compile group: 'org.glassfish.jersey.core', name: 'jersey-server', version: '2.26-b03'
compile group: 'org.glassfish.jersey.core', name: 'jersey-client', version: '2.26-b03'
我在web.xml中激活了POJO映射功能。
<init-param>
<param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
<param-value>true</param-value>
</init-param>
我写了一个简单的类来管理JSON实体,我使用了XMLElement注解。
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name="polygongjson")
public class PolygonGJson {
@XmlElement(name="type")
String type;
@XmlElement(name="properties")
String properties;
@XmlElement(name="geometry")
String geometry;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getProperties() {
return properties;
}
public void setProperties(String properties) {
this.properties = properties;
}
public String getGeometry() {
return geometry;
}
public void setGeometry(String geometry) {
this.geometry = geometry;
}
@Override
public String toString() {
return "Track [type=" + type + ", properties=" + properties + ", geometry=" + geometry +"]";
}
}
最后,我创建了REST方法,用于通过POST消耗JSON结构。
Path("/upload")
public class UploadRaster extends Application {
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Path("/j_geojson/{id_user}")
public Response uploadGeoJSON(@PathParam("id_user") String id_user,
PolygonGJson polyIn){
try{
System.out.println("JSON: "+polyIn.toString());
return Response.status(200).entity(polyIn.getGeometry()).build();
}catch(Exception e){
return Response.status(500).entity(e.getMessage()).build();
}
}
}
我准备了一个简单的json文件。
{
"type": "Feature",
"properties": "test prop",
"geometry": "test geo"
}
为了测试我的方法,我用curl的方式。
curl -X POST -H "Content-Type: application/json" -d @./testgjsimple.json https://myserver:8443/mywarfile/api/upload/j_geojson/1
但服务器的响应是:
HTTP Status 415 - Unsupported Media Type
Unsupported Media Type
The server refused this request because the request entity is in a format not supported by the requested resource for the requested method.
注意:我的应用服务器是Tomcat 7。
有什么办法吗?
据我所知,XML和JSON结构的处理是不同的。所以这部分。
...
@XmlRootElement(name="polygongjson")
public class PolygonGJson {
@XmlElement(name="type")
String type;
...
可能会导致JSON不能正常使用。
试试没有这样的注释(一定能用)。
...
public class PolygonGJson {
String type;
...
或者如果你想调整一些特殊的东西,使用JSON的注释(我更喜欢jackson)。