gpt4 book ai didi

tomcat 8.5 servlet 参数 : webappBasePath

转载 作者:行者123 更新时间:2023-11-28 23:15:12 29 4
gpt4 key购买 nike

我有一个包含几个 servlet 的 web 应用程序,一个 servlet 假设 ServletConfig 中的初始化参数 webappBasePath。我不知道这是如何设置的,但旧版本(例如,在 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

卡特琳娜.out:

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

登录tomcat8.5:

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

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

最佳答案

找到答案:我想,我只是把自己弄糊涂了。如果您有兴趣,请参阅我的回答。

catalina.out 日志显示初始参数 webappBasePath根本没有设置:如果是,就会有:init-param 'webappBasePath' = <something> catalina.out中的消息日志文件。

需要注意的是,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日志展示

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

tomcat8.5日志

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

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

编辑

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;
}
// ...
}

网络资源 getCanonicalPath()电话 java.io.File#getCanonicalPath()哪个

removes redundant names such as '.' and '..' from the pathname

(从 javadocs for File#getCanonicalPath 复制)

关于tomcat 8.5 servlet 参数 : webappBasePath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50811270/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com