我有一个 java webservice (jaxws /jersey) 并希望它在我使用浏览器访问 web 服务时在首页上显示图像。
我为第一页发送 html 代码的 @GET 方法如下:
@GET
@Produces(MediaType.TEXT_HTML)
public String getHTMLSite(){
String message = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"+
"<html xmlns=\"http://www.w3.org/1999/xhtml\" dir=\"ltr\" lang=\"de-DE\">" +
"<div style=\"padding-left:20px; height:200px; width:800px; font-size:20px;\">" +
"<p>" +
"<h1 style=\"color:#313e7d\">" +
"Hello World. This is a Webservice URL" +
"</h1>" +
"</p>"+
"<img src=\"/images/img_logo.gif\" height=\"51\" width=\"537\"/>"+
"</div>"+
"</html>";
return message;
}
一切正常,除了图像
<img src=\"/images/img_logo.gif\" height=\"51\" width=\"537\"/>
还没有找到。
我将图像移动到 WebContent / images/ 目录中。
我究竟做错了什么?