Using an explicitly configured config file path with init param 'confPath'
UrlRewriteFilter will never reload changed configuration because it does
not check the file at that path.
private long getConfFileLastModified() {
File confFile = new File(context.getRealPath(DEFAULT_WEB_CONF_PATH));
return confFile.lastModified();
}
should be
private long getConfFileLastModified() {
File confFile = new File(context.getRealPath(confPath));
return confFile.lastModified();
}
Original issue reported on code.google.com by asal...@gmail.com on 7 Jun 2007 at 6:09
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
asal...@gmail.com
on 7 Jun 2007 at 6:09The text was updated successfully, but these errors were encountered: