我有一個方法返回java.net.URL,我無法找到@Produces註釋的正確MediaType。有可能產生一個URL MediaType?Java REST球衣生產URL
我的代碼:
@GET
@Produces(MediaType.TEXT_HTML) //MediaType I don´t know
@Path("terms.html")
public URL getTerms(){
Iterator<String> it=definitions.keySet().iterator();
URL url,url1=null;
try {
url = new URL("http://localhost:8080/Dictionary/definitions/");
url1 = new URL(url,it.next()+".html");
} catch (MalformedURLException e) {
e.printStackTrace();
}
return url1;
}
我想在我的休息服務是類似的東西: