2010-12-02 25 views
0

script.tag:JSP的java:我的標記文件不替換參數

<%@ attribute name="file" required="true"%> 
<script type="text/javascript" src="/path/to/${file}"></script> 

my.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" 
    pageEncoding="UTF-8"%> 
<%@ taglib tagdir="/WEB-INF/tags" prefix="x"%> 
<x:script file="register.js"/> 

然而,${file} PARAM沒有被替換,並保持字面上${file}

幫助!

回答

0

移動到Tomcat 6個固定這一點。

0

當您在標籤中使用屬性時,是否嘗試添加pageScope?就像這樣:

<script type="text/javascript" src="/path/to/${pageScope.file}"></script>