1

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))

Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
VoV4a
  • 91
  • 2
  • 7

1 Answers1

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

Community
  • 1
  • 1
Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140