是否可以在 tomcat servlet 中禁用 jsessionid?
是否可以关闭tomcat中url中的jsessionid? jsessionid 似乎对搜索引擎不太友好。
Is it possible to turnoff jsessionid in the url in tomcat? the jsessionid seems not too search engine friendly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
您可以仅针对使用此过滤器的搜索引擎禁用,但我建议将其用于所有响应,因为它比搜索引擎不友好更糟糕。 它公开了可用于某些安全漏洞的会话 ID(更多信息)。
Tomcat 6(6.0.30 之前的版本)
您可以使用tuckey 重写过滤器。
Tuckey 过滤器的配置示例:
Tomcat 6(6.0.30 及更高版本)
您可以使用 disableURLRewriting 在上下文配置中禁用此行为。
Tomcat 7 和 Tomcat 8
来自 Tomcat从 7 开始,您可以在会话配置中添加以下内容。
You can disable for just search engines using this filter, but I'd advise using it for all responses as it's worse than just search engine unfriendly. It exposes the session ID which can be used for certain security exploits (more info).
Tomcat 6 (pre 6.0.30)
You can use the tuckey rewrite filter.
Example config for Tuckey filter:
Tomcat 6 (6.0.30 and onwards)
You can use disableURLRewriting in the context configuration to disable this behaviour.
Tomcat 7 and Tomcat 8
From Tomcat 7 onwards you can add the following in the session config.
Tomcat 7 和 Tomcat 8 支持 Web 应用程序 web.xml 中的上述配置,这会禁用基于 URL 的会话。
Tomcat 7 and Tomcat 8 support the above config in your web-app web.xml, which disables URL-based sessions.
在 Tomcat 6.0 中可以通过以下方式执行此操作:
禁用URLRewriting
http://tomcat.apache.org/tomcat-6.0-doc/config/context.html
例如,
在 Tomcat 7.0 中,这是通过应用程序中的以下内容进行控制的:
ServletContext.setSessionTrackingModes()
Tomcat 7.0 遵循 Servlet 3.0 规范。
It is possible to do this in Tomcat 6.0 with:
disableURLRewriting
http://tomcat.apache.org/tomcat-6.0-doc/config/context.html
e.g.
Within Tomcat 7.0, this is controlled with the following within an application:
ServletContext.setSessionTrackingModes()
Tomcat 7.0 follows the Servlet 3.0 specifications.
在所有 URL 上使用
Filter
,将response
包装在HttpServletResponseWrapper
中,仅返回与encodeRedirectUrl
相同的 URL,encodeRedirectURL
、encodeUrl
和encodeURL
。Use a
Filter
on all URLs that wraps theresponse
in aHttpServletResponseWrapper
that simply returns the URL unchanged fromencodeRedirectUrl
,encodeRedirectURL
,encodeUrl
andencodeURL
.引用Pool的回答:
值得一提的是,即使 jsessionid 不再可见,这仍然允许基于 cookie 的会话处理。
(摘自他的另一篇文章:我可以转关闭 web.xml 中的 HttpSession?)
PS。 我没有足够的声誉来发表评论,否则我会将此添加到他上面的帖子中作为评论。
Quote from Pool's answer:
It's worth mentioning, that this will still allow cookie based session handling even though the jsessionid is not visible anymore.
(taken from his other post: Can I turn off the HttpSession in web.xml?)
PS. I don't have enough reputation to comment, otherwise I would have added this to his post above as a comment.
在 Tomcat 6.0 中,您可以在 Tomcat 安装的 /config 路径中的 context.xml 中使用disableURLRewriting="true"。
http://tomcat.apache.org/tomcat-6.0-doc/config /context.html
context.xml 文件
...
现在 tomcat 输出它的搜索引擎友好...
享受
In Tomcat 6.0 you could use disableURLRewriting="true" into context.xml from your /config path of you tomcat instalation.
http://tomcat.apache.org/tomcat-6.0-doc/config/context.html
context.xml file
...
Now tomcat output it's search engine friendly...
Enjoy
另外,如果 Tomcat 前面有 Apache,则可以使用 mod_rewrite 过滤器删除 jsession。
将以下内容添加到您的 apache 配置中。
这将执行 301 重定向到没有 jsessionid 的页面。 显然这将完全禁用 url jsessionid,但这正是我所需要的。
干杯,
标记
Also if you have Apache in front of Tomcat you can strip out the jsession with a mod_rewrite filter.
Add the following to your apache config.
This will do a 301 redirect to a page without the jsessionid. Obviously this will completely disable url jsessionid's but this is what I needed.
Cheers,
Mark
默认情况下,Tomcat 服务器中启用了 cookie(您可以通过在 server.xml 元素中使用 cookies=true 显式设置它)。 启用 cookie 意味着 jsessionID 不会附加到 URL,因为会话将使用 cookie 进行管理。
然而,即使在启用 cookie 后,jsessionID 也会附加到第一个请求的 URL 中,因为网络服务器在该阶段并不知道 cookie 是否已启用。 要删除此类 jsessionID,您可以使用 tuckey 重写规则:
您可以在 http://javatechworld.blogspot.com/2011/01/how-to-remove-jsessionid-from-url-java.html
您可以找到更多信息这位于 http://javatechworld.blogspot .com/2011/01/how-to-remove-jsessionid-from-url-java.html
By default, cookies are enabled in Tomcat server(you can explicitly set it by using cookies=true in element of server.xml). Enabling cookies means that jsessionID will not be appended to URL's since session will be managed using cookies.
However, even after cookies are enabled, jsessionID's are appended to the URL for first request as the webserver doesn't know at that stage if cookies have been enabled. To remove such jsessionIDs, you can using tuckey rewrite rules:
You can find more information on this at http://javatechworld.blogspot.com/2011/01/how-to-remove-jsessionid-from-url-java.html
You can find more information on this at http://javatechworld.blogspot.com/2011/01/how-to-remove-jsessionid-from-url-java.html
在 tomcat 7 及更高版本中,您可以在 tomcat/conf/context.xml 中添加此内容
以禁用 JSESSIONID。 有关此帮助文档的更多信息(请参阅 cookies 部分)。
in tomcat 7 and above, you can add this in tomcat/conf/context.xml
to disable JSESSIONID. More on this help doc (refer cookies section).