Spring 应用程序中的 cookie 属性不足

Inadequate cookie attributes in spring application

提问人:SYED WASEEM AHMED 提问时间:9/29/2023 最后编辑:SYED WASEEM AHMED 更新时间:9/29/2023 访问量:42

问:

在 Spring MVC 应用程序中,cookie 属性路径设置为 root(/),并且应使用特定域路径的 cookie 属性路径进行配置。

在 web.xml 文件中进行了以下更改。但问题仍然没有解决。jsessionid 设置为根路径,但另一个名为 inc10 的 cookie 未设置为根路径。请帮忙。

<session-config>
   <session-timeout>30</session-timeout>
   <cookie-config>
      <path>/MyApp</path>
      <http-only>true</http-only>
     <secure>false</secure>
   </cookie-config>
   <tracking-mode>COOKIE</tracking-mode>
</session-config>

enter image description here

Java Spring JSP

评论

0赞 Grim 9/29/2023
INC10 还是 IMC10?
0赞 SYED WASEEM AHMED 9/29/2023
对不起,错误 IMC10
0赞 Grim 10/4/2023
请查看屏幕截图,imc10设置为根路径。你说不是。反之亦然,您在文本中说 JSESSIONID 设置为根路径,但屏幕截图不同。我认为你的问题与你的问题相矛盾。

答: 暂无答案