this is a really newbie question: How can I output XML with Spring MVC, version 3.0.3.RELEASE? I'm currently using Tiles2 with JSTL, and when I want to output PDF, i.e., I just create a view renderer that extends AbstractPdfView as follows:
public class PDFOutput extends AbstractPdfView {
@Override
protected void buildPdfDocument(Map<String, Object> model, Document doc,
PdfWriter pdfWriter, HttpServletRequest request, HttpServletResponse response)
throws Exception {
In that case, what AbstractView class should I extend to create an XML document?
Thanks in advance,