提问人:SYED WASEEM AHMED 提问时间:9/29/2023 最后编辑:SYED WASEEM AHMED 更新时间:9/29/2023 访问量:42
Spring 应用程序中的 cookie 属性不足
Inadequate cookie attributes in spring application
问:
在 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>
答: 暂无答案
评论