如果我这样做:
@GET
@Path("/users")
@Produces("application/json")
public String users()
{
String users = null;
ArrayList<User> userList = new ArrayList<User>();
try {
userList = new UserManager().getUsers();
Gson gson = new Gson();
users = gson.toJson(userList);
} catch (Exception e) {
e.printStackTrace();
}
return users;
}
我的 GET 方法只是返回 JSON 中的信息。但我也希望它返回 XML 吗?类似的东西@Produces({"application/xml", "application/json"})
。
我该怎么做?