如何在jsp页面中显示jsp源代码
我正在为我编写的公司小部件编写文档,并希望在我们的开发站点上运行它,但我需要在页面中显示一些 jsp 源代码。
如何阻止代码被插入?
I am writing documentation for a company widget i authored and would like to run it on our development site but i need to show some jsp source code in the page.
How do i stop code from being interpolated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
<
替换为<
,将>
替换为>
。如果需要,您可以将其设置为 bean 属性并使用 JSTL
来显示它。默认情况下它会完成这项工作。Replace
<
by<
and>
by>
.You can if necessary make it a bean property and use JSTL
<c:out>
to display it. It by defaut does that job.