Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Play 2.1 中配置 SESSION cookie 的名称?
默认情况下,Play 似乎创建了一个名为“PLAY_SESSION”的 cookie。如何自定义名称?
谢谢
有关会话的所有详细信息都可以在
应用程序.conf
你想要的设置是
session.cookieName= COOKIE_NAME
值得查看 Http.scala 文件中的文档。主要围绕Session案例类。
希望有帮助!