我正在使用泽西岛,我有以下方法:
@POST
@Path("hello")
@Produces(MediaType.TEXT_HTML)
public String hello(@FormParam("username") String username)
{
Gson gson = new Gson();
CommunicationResponseM result = new CommunicationResponseM();
String result = "hello";
return gson.toJson(result);
}
到目前为止一切顺利,但现在我需要添加一些标题。我怎样才能做到这一点?
谢谢!
PS:
我以这种方式启动Jersey服务器:
final HttpServer server = HttpServerFactory.create(baseUrl);
server.start();