如何从我的网址中删除jsessionid?
我使用的是Spring Boot MVC(没有Spring Security;嵌入了tomcat)。
我已经读过可以通过将disableUrlRewriting设置为" true"来完成。 但这看起来像是一个Spring Security解决方案,我不会使用它(它是一个没有登录的简单项目;只是页面;会话控制器存在且必须是会话控制器)。
我问这个是因为GoogleBot正在创建包含ID的网址。
编辑: 我使用https://randomcoder.org/articles/jsessionid-considered-harmful
中描述的解决方案解决了这个问题答案 0 :(得分:6)
我创建了一个快速而又脏的弹簧启动应用程序,这就是我想出来的。
生成的ServletInitializer,您可以这种方式更改它:
package com.division6.bootr;
import java.util.Collections;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.SessionCookieConfig;
import javax.servlet.SessionTrackingMode;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.web.SpringBootServletInitializer;
public class ServletInitializer extends SpringBootServletInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
// This can be done here or as the last step in the method
// Doing it in this order will initialize the Spring
// Framework first, doing it as last step will initialize
// the Spring Framework after the Servlet configuration is
// established
super.onStartup(servletContext);
// This will set to use COOKIE only
servletContext
.setSessionTrackingModes(
Collections.singleton(SessionTrackingMode.COOKIE)
);
// This will prevent any JS on the page from accessing the
// cookie - it will only be used/accessed by the HTTP transport
// mechanism in use
SessionCookieConfig sessionCookieConfig=
servletContext.getSessionCookieConfig();
sessionCookieConfig.setHttpOnly(true);
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(SpringBootrApplication.class);
}
}
AUTHOR NOTE
我不是百分之百确定何时引入,但通过引入以下参数,可以在不必编写代码的情况下完成相同的操作:
答案 1 :(得分:5)
由于这个问题是在春季启动环境中,对我来说简单的解决方案是:
server:
session:
tracking-modes: cookie
在appication.yml中添加它修改了嵌入式tomcat配置。从ll spring引导属性列表: https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#common-application-properties
答案 2 :(得分:3)
你也可以试试这个,
@Bean
public ServletContextInitializer servletContextInitializer() {
return new ServletContextInitializer() {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
servletContext.setSessionTrackingModes(Collections.singleton(SessionTrackingMode.COOKIE));
SessionCookieConfig sessionCookieConfig=servletContext.getSessionCookieConfig();
sessionCookieConfig.setHttpOnly(true);
}
};
}
答案 3 :(得分:0)
更多便携式选项也可用于非SpringBoot,请将以下内容添加到Webapp的web.xml
:
<session-config>
<tracking-mode>COOKIE</tracking-mode>
</session-config>