start implementation of isolated classloaders

This commit is contained in:
Sebastian Sdorra
2014-06-06 08:57:41 +02:00
parent 18c5c3ec97
commit 1d6db4424b
41 changed files with 1391 additions and 2430 deletions

View File

@@ -53,6 +53,8 @@ import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.util.Locale;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@@ -99,7 +101,8 @@ public class HgCGIExceptionHandler
*/
public HgCGIExceptionHandler()
{
this.bundle = Bundle.getBundle(BUNDLE_PATH);
this.bundle = Bundle.getBundle(BUNDLE_PATH, Locale.ENGLISH,
HgCGIExceptionHandler.class.getClassLoader());
}
//~--- methods --------------------------------------------------------------