我正在尝试使用springboot创建rest服务。
在春季MVC中,我像下面这样使用
<session-config>
<session-timeout>20</session-timeout>
<cookie-config>
<name>AWESOME_JSESSIONID</name>
</cookie-config>
</session-config>
在springboot application.properties中,如下所示
server.servlet.session.cookie.name=AWESOME_JSESSIONID
server.servlet.session.timeout=20m
如果我在标题中添加spring安全会话ID,那么它将重定向spring登录页面,但是我想管理所有步骤。
不久,我只想为第一个请求返回SET_COOKIE,其他请求将具有此cookie值。