tomcat 8.5 servlet参数:webappBasePath

时间:2018-06-12 07:12:49

标签: tomcat servlets

我有一个包含几个servlet的web应用程序,一个servlet对webappBasePath中的init-param ServletConfig做出了假设。我不知道这是如何设置的,但旧版本(例如,在centos 5主机上的tomcat 5上测试)tomcat5-5.5.23-0jpp.40.el5_9将{。}添加到webappBasePath,而较新的版本似乎没有这个。 (编辑:该变量没有附加'./',下面的代码调用ServletContext.getRealPath()为默认设置'。'和不同的tomcat版本处理不同的东西)

我在WEB-INF / web.xml中添加了一个新的servlet:

    <servlet>
        <servlet-name>TKServlet</servlet-name>
        <servlet-class>servlets.TKServlet</servlet-class>

    </servlet>

    <servlet-mapping>
        <servlet-name>TKServlet</servlet-name>
        <url-pattern>/tkservlet</url-pattern>
    </servlet-mapping>

TKServlet.java

package ImageGenerator;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.*;

import java.io.*;

public class TKServlet extends HttpServlet {
    private static final long serialVersionUID = 9830958231344L;

    private static String webappBasePath = ".";

    public void init(ServletConfig config) throws ServletException {
        super.init(config);
        if (config.getInitParameter("webappBasePath") != null) {
            webappBasePath = config.getInitParameter("webappBasePath");
            System.err.println("init-param 'webappBasePath' = " + webappBasePath);
        }
        webappBasePath = config.getServletContext()
                             .getRealPath(webappBasePath) + "/";
        System.err.println("getRealPath(webappBasePath) = " + webappBasePath);
    }

    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException {
        response.setContentType("text/ascii");
        PrintWriter out = response.getWriter();
        out.println("Here is some response doc.");
        out.println("webappBasePath is: " + webappBasePath);
    }
}

来自tomcat5的日志:http://localhost:8080/myapp/tkservlet

catalina.out中:

getRealPath(webappBasePath) = /usr/share/tomcat5/webapps/XSLT_HIQ/./

登录tomcat8.5:

getRealPath(webappBasePath) = /adtech/tomcat/webapps/XSLT_HIQ/

问题: webappBasePath设置在哪里以及如何修改?

1 个答案:

答案 0 :(得分:0)

找到答案:我想,我只是在迷惑自己。如果您有兴趣,请查看我的回答。

catalina.out日志显示init-parameter webappBasePath根本没有设置:如果是,则init-param 'webappBasePath' = <something>日志文件中会出现:catalina.out消息。 / p>

需要注意的一点是,ServletContext.getRealPath()的输出在tomcat版本之间是不同的,我想这是我的servlet代码中的一个错误。

当然,可以通过<init-params>文件中的WEB-INF/web.xml进行设置。

我已添加(在<servlet>标记内):

     <init-param>
        <param-name>webappBasePath</param-name>
        <param-value>/var/tmp/somewebapp/files/./</param-value>
     </init-param>
</servlet>

tomcat 5 log show

init-param 'webappBasePath' = /var/tmp/somewebapp/files/./
getRealPath(webappBasePath) = /usr/share/tomcat5/webapps/XSLT_HIQ/var/tmp
                                  /somewebapp/files/./

tomcat8.5 log

init-param 'webappBasePath' = /var/tmp/somewebapp/files/./
getRealPath(webappBasePath) = /adtech/tomcat/webapps/XSLT_HIQ/var/tmp
                                  /somewebapp/files//
tomcat8.5上的

注意 ServletContext.getRealPath()通过删除单个点组件来“规范化”路径。

修改

ApplicationContext中使用以下代码的较旧的tomcat版本(来自svn tc5.0.x的示例)

public String getRealPath(String path) {                                    
    // ...                                                                        
    File file = new File(basePath, path);                                   
    return (file.getAbsolutePath());                                        

}

虽然较新的版本使用getRealPath中的StandardContext(第4319-4349行here

public String getRealPath(String path) {
    if (resources != null) {
        // ...
            WebResource resource = resources.getResource(path);
            String canonicalPath = resource.getCanonicalPath();
            // ...

                return canonicalPath;
            }
    // ...
}

WebResource getCanonicalPath()调用java.io.File#getCanonicalPath()

  

删除多余的名称,例如“。”和路径名中的“..”

(从javadocs for File#getCanonicalPath复制)