Spring - 使用 XSLT 的网页
我是 XSLT 的新手,我知道将 XSLT 集成到 Spring Web 应用程序中的最佳解决方案是什么。我找到了快速示例这里,但总而言之我遇到了麻烦正确的字符编码并切换到 Saxon 处理器(我参考我之前的问题此处和< a href="https://stackoverflow.com/questions/5118042/spring-xslt-switching-from-xalan-to-saxon">此处)。在《Spring in Action》一书中,通过扩展 AbstractXsltView 描述了解决方案。有比 AbstractXsltView 更好的方法让我选择 Saxon 处理器吗?有比从 .jsp 文件执行转换更好的方法吗?
I'm new in XSLT and I would know what is the best solution to integrate XSLT into Spring web application. I found quick example here, but all in all I had troubles with proper character encoding and switching to Saxon processor (I refer to my former questions here and here). In book: 'Spring in Action' is described solution by extending AbstractXsltView. Is better way than AbstractXsltView which would let me choose Saxon processor? Is better way than execute transformation from .jsp files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个旧的 IBM DeveloperWorks JSTL 入门,介绍如何使用 JSP 进行转换JSTL 的
标签。这将是一个更简单的方法,但可能不允许 Saxon。There's an old IBM DeveloperWorks JSTL primer on doing transformations through JSP using the
<x:transform>
tag of JSTL. This would be a much simpler approach, but may not allow Saxon.