Spring Boot没有发送会话ID作为响应

时间:2018-11-12 12:54:44

标签: spring spring-boot spring-session

我正在尝试使用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值。

0 个答案:

没有答案