在Websphere中修改JSP頁面後重新整理不生效解決方案
每次在Websphere中修改了JSP檔案在前台頁面重新整理都不生效,還是沒有改之前的狀態,甚至把緩衝中的.class檔案清除後再重新整理也是沒有反應。導致每次都要刪緩衝然後再重啟Websphere才生效,頭痛死了。
解決方案:
開啟 /WEB-INF/ 下面的 ibm-web-ext.xmi 檔案,原來ibm-web-ext.xmi 檔案內容如下:
<?xml version="1.0" encoding="UTF-8"?>
<webappext:WebAppExtension xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:webappext="webappext.xmi" xmlns:webapplication="webapplication.xmi" xmi:id="WebAppExtension_1" reloadInterval="5" reloadingEnabled="false" defaultErrorPage="error.jsp" additionalClassPath="" fileServingEnabled="false" directoryBrowsingEnabled="false" serveServletsByClassnameEnabled="true" autoRequestEncoding="true" autoResponseEncoding="false">
<webApp href="WEB-INF/web.xml#WebApp_ID"/>
<jspAttributes xmi:id="JSPAttribute_1" name="reloadEnabled" value="true"/>
</webappext:WebAppExtension>
紅色部分為加入的,設定reloadEnabled 屬性為 true,設定好後必須重新啟動Websphere才會生效。
其它可設定的屬性類似還有:
<jspAttributes xmi:id="JSPAttribute_1" name="useThreadTagPool" value="true"/>
<jspAttributes xmi:id="JSPAttribute_2" name="disableJspRuntimeCompilation" value="true"/>
<jspAttributes xmi:id="JSPAttribute_3" name="useFullPackageNames" value="true"/>
具體屬性可參考IBM網站:
http://publib.boulder.ibm.com/infocenter/wsdoc400/v6r0/index.jsp?topic=/com.ibm.websphere.iseries.doc/info/ae/ae/rweb_jspreloading.html