gpt4 book ai didi

Java servlet 上下文根

转载 作者:搜寻专家 更新时间:2023-11-01 03:30:23 24 4
gpt4 key购买 nike

是否允许将多个条目作为 servlet 的上下文根?

例如,所有 Sun 示例都使用单个 /catalog 或类似于上下文根的内容,但它也可以是 /catalog/furniture 吗?

Servlet 2.4 Specification这里不具体说明。

Context Path: The path prefix associated with the ServletContext that this servlet is a part of. If this context is the “default” context rooted at the base of the Web server’s URL name space, this path will be an empty string. Otherwise, if the context is not rooted at the root of the server’s name space, the path starts with a’/’ character but does not end with a’/’ character.

最佳答案

我们不能为 servlet 提供多个上下文根。但是我们可以在 server.xml 中使用不同的名称动态更改为

<web-uri>Project.war</web-uri>
<context-root>myproj</context-root>

我们可以用不同的名称配置我们的项目上下文根,但它应该是一个名称。

默认情况下,如果您使用请求对象作为 req.getContextPath(); 调用 contextPath,它将默认使用斜杠 (/) 作为 /myproj

有关将上下文根从静态更改为动态的更多信息,您可以 check here .

关于Java servlet 上下文根,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1813343/

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