我们将在我们的 JSP/spring-project 中为某种模板引擎使用 JSTL 和自定义 JSTL-tags。
有没有办法创建一个看起来像这样的标签:
<div id="site">
<div id="header">Some title</div>
<div id="navigation"> SOME DYNAMIC CONTENT HERE </div>
<div id="content"> ${content} </div>
<div id="footer"></div>
</div>
并像这样使用它:
<mytags:template>
<h1>Title</h1>
<p>My content!</p>
</mytags:template>
即在自定义 JSTL 标记中使用 body-content ...
这有效:
<mytags:template content="some content... not HTML" />
但在我们的例子中不是很有用。