I'm sending from spring controller ModelAndView with object org.w3c.dom.Document. So I need to print it on my jsp without scriplets. Is there any way to do this with jstl? ThanX))
Asked
Active
Viewed 850 times
1 Answers
2
JSTL has XML tags. You can try <x:out>
But it might be better to use a Controller (or Servlet) and print the document to the response.getOutputStream()
, using the method I provided in this answer