我在jsp中生成css,输出是:
<style type="text/css">
body{background: #ffffff url('<c:url value='/resources/images/logo/logo_small.png'/>') no-repeat scroll center center}
</style>
现在我在jsp中调用这段代码:
<%@include file="/WEB-INF/common/css/sitemap_common.jsp" %>
<%@include file="/WEB-INF/common/css/index.jsp" %>
它有效,输出是这样的:
<head>
<style type="text/css">
body{background: #ffffff url('<c:url value='/resources/images/logo/logo_small.png'/>') no-repeat scroll center center}
</style>
</head>
但我需要的是
<head>
<link rel="stylesheet" href="/css/mycss.css" type="text/css">
</head>
这是一个已完成的项目,包含 100 个生成 jsp 的 css。我需要更新以获得更好的性能。链接标签将被浏览器捕获。但脚本标签每次都会加载。