在使用c:import直接去請求資源,jsp渲染的仍是舊的資源緩存
解決方法:jsp
在請求頁面時,能夠加上隨機數,如自動生成的時間戳,這樣請求時每次都是新的url,就沒必要從緩存中直接去取資源了this
用c:import標籤請求緩存的緣由是源碼中並無在url中加隨機數的機制,因此纔會出現這樣的問題url
public void setUrl(String url) throws JspTagException {
this.url = url;
}資源
// for tag attribute
public void setContext(String context) throws JspTagException {
this.context = context;
}源碼
// for tag attribute
public void setCharEncoding(String charEncoding) throws JspTagException {
this.charEncoding = charEncoding;
}io