10

I only can find Play 1.x has this setting. How to set this in Play 2.X?

http://www.playframework.org/documentation/1.2.4/configuration

application.defaultCookieDomain

Enables session/cookie sharing between subdomains. For example, to make cookies valid for all domains ending with ‘.example.com’, e.g. foo.example.com and bar.example.com:

application.defaultCookieDomain=.example.com Default: a cookie is only valid for a specific domain.

4

2 に答える 2

15

In play 2.4, session.domain has been deprecated. You should now use: play.http.session.domain

于 2015-12-22T15:11:47.623 に答える
9

その問題に変更が加えられましPlay 2.1たが、残念ながらバックポートされませんでした2.0.x

つまり、Play 2.1以降、confで使用できるようになります。

session.domain=".mydomain.com"

2.0.xソースに自分でパッチを当てる必要があるからです。

于 2013-02-06T05:18:42.590 に答える