如何配置 spring mvc/jsp 输出 xhtml 而不是 html?
我开始尝试 Spring MVC,并注意到我的 jsps 作为 html 文件提供。例如,
<html>
<head>
...
</html>
我如何配置 Spring MVC 来提供 xhtml 文件?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
...
</html>
注意 - SpringMVC 在我的 jsp 中添加 标记作为前缀,因此我没有任何空间在此之前添加文档类型。
I'm starting to experiment with Spring MVC, and noticed that my jsps are served as html files. E.g.
<html>
<head>
...
</html>
How can I configure Spring MVC to serve xhtml files instead?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
...
</html>
Note - SpringMVC prefixes my jsp with the <html>
tag, so I don't have any room to add the doctype before that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更改您的 JSP。对于服务器来说,所有 HTML 都只是文本。
但请注意,您需要更改的不仅仅是文档类型。您还必须检查 JSP(以及包含的文件等)是否符合新标准。例如结束标签、小写标签和属性名称。
Change your JSPs. To the server, all HTML is just text.
But beware, that you need to change more than the doctype. You will also have to check the JSPs (and also included files, etc) that they conform to the new standard. e.g. closing tags, lower-case tag and attribute names.
对此没有快速修复方法,基本上您必须重写 jsps 以使其兼容 html 并添加适当的 DOCTYPE。
您可以使用 JSP 生成几乎任何类型的文本文件。 JSP 本身并不关心您是否正在制作 CSV、XHTML、Quirks 模式 HTML 或其他任何内容。
现在,如果您使用 JSPX,您会受到更多限制,因为这些文件必须是有效的 xml。
There is no quick fix to this one, basically you have to rewrite your jsps to be html compliant and add the appropriate DOCTYPE.
You can use JSPs to produce pretty much any type of text file. JSP itself doesn't care if you are making a CSV, XHTML, Quirks mode HTML, or anything else.
Now if your using JSPX you are a little more limited in that those files have to be valid xml.
以下是 web.xml 中用于 web flow、jsf 和 xhtml 显示的条目:
Following is entry in web.xml for web flow , jsf and xhtml display: