答案 0 :(得分:1)
是。这绝对是可能的。 Here is a tutorial on JSP templates。它教你如何使用include指令,它允许你包含静态内容,如HTML文件,如:
<%@include file='header.html'%>
或允许您使用
包含模板的模板标记库<%@ taglib uri='/WEB-INF/tlds/template.tld' prefix='template' %>
<html><head><title><template:get name='title'/></title></head>
<body background='graphics/background.jpg'>
<table>
<tr valign='top'><td><template:get name='sidebar'/></td>
<td><table>
<tr><td><template:get name='header'/></td></tr>
<tr><td><template:get name='content'/></td></tr>
<tr><td><template:get name='footer'/></td></tr>
</table>
</td>
</tr>
</table>
</body></html>
从模板或原始JSP文件中,您绝对可以引用CSS。这很简单。您可以像定期那样在JSP中引用HTML标记中的CSS:
<link rel="stylesheet" href="common.css" type="text/css">
有关详细信息,请参阅W3。