tomcat 8.0移轉到8.5注意事項
tomcat 8.0移轉到8.5時候, 要注意原本應用軟體是否有用到傳統的cookie方式,
若有則必須在 context.xml 檔案加上一段相容的設定, 否則會無法使用舊系統的cookie認證方式
<CookieProcessor className="org.apache.tomcat.util.http.LegacyCookieProcessor" />
tomcat 8.0移轉到8.5時候, 要注意原本應用軟體是否有用到傳統的cookie方式,
若有則必須在 context.xml 檔案加上一段相容的設定, 否則會無法使用舊系統的cookie認證方式
<CookieProcessor className="org.apache.tomcat.util.http.LegacyCookieProcessor" />
Tomcat 升級! 10多年來從5.x,6.x,7.x到8.0, 都相安無事, 到了8.5, 自己本身老舊專案所使用的cookie架構若不想改,就會出問題, 除非於tomcat 8.5加上相容的設定
<CookieProcessor className=“org.apache.tomcat.util.http.LegacyCookieProcessor” />