标签: java jsp spring-mvc
我从Spring控制器ModelAndView发送对象org.w3c.dom.Document。所以我需要在没有scriplets的情况下将它打印在我的jsp上。有没有办法用jstl做到这一点? ThanX))
答案 0 :(得分:2)
JSTL有XML tags。您可以尝试<x:out>
<x:out>
但最好使用Controller(或Servlet)并使用this answer中提供的方法将文档打印到response.getOutputStream()
response.getOutputStream()