To było łatwiejsze, niż się spodziewaliśmy.
Najpierw w application.conf
, skonfiguruj adres URL JDBC z parametrami jak opisano w innym pytaniu StackOverflow
:
# Set MySQL Connector/J to use UTC server connection and time conversions
# see https://stackoverflow.com/questions/10488529/gettimestamp-does-timezone-converstion-twice-in-mysql-jdbc-connector
db.default.url="jdbc:mysql://localhost/database?useGmtMillisForDatetimes=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&useTimezone=true&serverTimezone=UTC"
Po drugie, w Build.scala
, ustaw właściwość systemową Java i wartość domyślną:
// Setting this property here forces the JVM to run in UTC time,
// both for test (`play test`) and development (`play start`) modes,
// but not for production (`play dist`).
System.setProperty("user.timezone", "GMT")
TimeZone.setDefault(TimeZone.getTimeZone("GMT"))
Te dwie zmiany razem obsłużą oba test (play test
) i rozwój (play start
).
Do produkcji (play dist
), należy jeszcze ustawić właściwość przed uruchomieniem. Na przykład przez:
- Edycja wygenerowanego
start
skrypt do dodaniaexport _JAVA_OPTIONS=-Duser.timezone=GMT
- Wywoływanie
start
skrypt z-Duser.timezone=GMT
- Uruchamianie w istniejącej JVM po wywołaniu
System.setProperty("user.timezone", "GMT")