从 Struts 中的 JSP 页面返回 XML
我正在开发一个企业应用程序,其主要目的是数据检索。用户输入 URL“.../GetData.do”,应用程序根据包含数据的模式返回 XML。
编写允许我根据架构进行验证的 XML 的最佳位置在哪里?在 Action 类、.jsp 文件或其他地方?
我使用 Struts 1 作为我的 Web 应用程序框架。
谢谢。
I'm developing an enterprise application whose main purpose is data retrieval. The user enters a URL ".../GetData.do" and the application returns an XML based on a schema containing the data.
Where is the best place to write the XML that would allow my to validate against the schema? In the Action class, the .jsp file, or somewhere else?
I'm using Struts 1 as my web application framework.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在两个地方进行此操作,具体取决于您的喜好。
对于 JSP,有
< ;x:
JSTL 中的前缀。您只需设置<%@ page contentType="text/xml" %>
。我从来没有这样做过,尽管您可以在操作中通过将 xml 写入响应编写器(并再次设置内容类型)来完成此操作。
然而,最好通过一些可以将对象转换为 xml 的框架(如 JAXB 或 XStream)来完成。
You can do it in both places, depending on your preference.
For JSP there is the
<x:
prefix in JSTL. You just have to set the<%@ page contentType="text/xml" %>
. I have never done it this way thoughYou can do it in the action, by writing the xml to the response writer (and again setting the content type).
However this is better done via some framework that can turn objects to xml (like JAXB or XStream).