Questions tagged [playframework-2.8]

3 questions
4
votes
0 answers

Pac4j + Play framework hot class reloading issue

We are using Play framework (v2.8.16) with Pac4j (v10.0.2) as the security framework running on OpenJDK 12. Our application is a Java app and we are using Play's multi-module setup. In Play's development mode there is a hot code reloading feature…
jdo
  • 71
  • 5
2
votes
1 answer

Set JDBC properties on play-framework application.config

I'd like to set some JDBC properties on the application.config. For example: useLegacyDatetimeCode=false&useUnicode=true&serverTimezone=UTC And this is my application.config. play { db.prototype.hikaricp { connectionTimeout = 30…
kalin
  • 89
  • 1
  • 7
0
votes
2 answers

NullPointerException while Passing inputs from scala.html to Controller as form in Play framework(2.8.*) Java

I'm working in creating a java web app using play framework(2.8.19). While creating registration page I'm trying to pass the inputs from the registration page(scala.html) to the controller class where it saves the input to the Postgres table. Here…