Rename variable.
This commit is contained in:
parent
1b958cba34
commit
cead414104
1 changed files with 3 additions and 3 deletions
6
src/fr/devinsy/kiss4web/SimpleServletDispatcher.java
Executable file → Normal file
6
src/fr/devinsy/kiss4web/SimpleServletDispatcher.java
Executable file → Normal file
|
@ -22,7 +22,7 @@ public class SimpleServletDispatcher extends HttpServlet
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -3471226305721330069L;
|
private static final long serialVersionUID = -3471226305721330069L;
|
||||||
static protected org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger (ServletDispatcher.class);
|
static protected org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger (ServletDispatcher.class);
|
||||||
protected String pathInfoClassNamePrefix;
|
protected String webclassesRootPath;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -31,7 +31,7 @@ public class SimpleServletDispatcher extends HttpServlet
|
||||||
public void init () throws ServletException
|
public void init () throws ServletException
|
||||||
{
|
{
|
||||||
super.init();
|
super.init();
|
||||||
this.pathInfoClassNamePrefix = getInitParameter("pathInfoClassNamePrefix");
|
this.webclassesRootPath = getInitParameter("webclassesRootPath");
|
||||||
|
|
||||||
// Set logger.
|
// Set logger.
|
||||||
String logFilepathname = getInitParameter("log4j-init-file");
|
String logFilepathname = getInitParameter("log4j-init-file");
|
||||||
|
@ -219,7 +219,7 @@ public class SimpleServletDispatcher extends HttpServlet
|
||||||
path = request.getPathInfo();
|
path = request.getPathInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
String className = pathInfoToClassName (path, this.pathInfoClassNamePrefix);
|
String className = pathInfoToClassName (path, this.webclassesRootPath);
|
||||||
logger.info ("className=" + className);
|
logger.info ("className=" + className);
|
||||||
|
|
||||||
HttpServlet servlet = instanciateServlet (className);
|
HttpServlet servlet = instanciateServlet (className);
|
||||||
|
|
Loading…
Reference in a new issue