从 Struts 中的 JSP 页面返回 XML

发布于 2024-10-11 19:50:29 字数 188 浏览 3 评论 0原文

我正在开发一个企业应用程序,其主要目的是数据检索。用户输入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

長街聽風 2024-10-18 19:50:29

您可以在两个地方进行此操作,具体取决于您的喜好。

对于 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 though

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文