有什麼辦法使用Spring MVC獲取生成的html文件(從它的原始jsp)?下面春天MVC:任何方式獲得生成的HTML文件,然後再發送給客戶端?
@Controller
@RequestMapping(value = "/index")
public class Router {
@RequestMapping(method = RequestMethod.GET)
public String details(..., ModelMap model) throws ApplicationServiceException {
//add attribute to model, change generated html from base jsp
model.addAttribute("test", "test");
//instead of returning index.jsp (like below) ...
return "index";
//...is it possible to get index.jsp (as it's generated html file) like such:
File html = new File("index.html");
}
}
的index.jsp
看評論:
<html>
${test}
</html>
(生成)的index.html:< - 我想
<html>
test
</html>
請讓我知道,如果該文件我的描述不清楚,英語不是我的第一語言,所以我會盡力解釋更好。謝謝
你在做什麼試圖達到什麼目的? HTML需要很多其他的東西,比如css,javascript等等,所以爲什麼你沒有在你的本地服務器上部署你的代碼並且看看生成了什麼? –
你爲什麼需要這個?讓視圖解析器完成它的工作。 –
我打算把HTML文件發送到客戶端,並將所有必需的js,css文件放在一個zip文件中。因此,爲什麼我需要它作爲一個文件。 @AmitKBist我可以將它部署到我的本地服務器,並且我有,但這不是我希望它工作的方式 – user2276831