使用.jsp作为不寻找JSP文件的rest url

时间:2017-02-20 11:48:06

标签: java rest spring-mvc java-ee

我正在尝试将document.jsp用作REST URL,但它正在寻找.jsp文件。

@RequestMapping(value = "/document.jsp", params = { "doc"}, method = RequestMethod.GET, produces = "application/json")
String fetchDocContent(@RequestParam(value = "doc") String doc) {
    String Code=doc.substring(doc.lastIndexOf("/"), doc.lastIndexOf("."));
    return code;
}

网址是:

   http://localhost:8080/MyProject/document.jsp?DOC=XML/11791.xml

我的应用程序中没有document.jsp。我正在为旧应用程序的内容创建此Rest URL,其中包含

之类的链接

<a class="blink" href="document.jsp?DOC=XML/11791.xml">Cr</a>

在很多地方。现在我正在尝试重用相同的URL。请建议。

0 个答案:

没有答案