play-ebean
play-ebean copied to clipboard
Play Ebean module
Updates * [io.ebean:ebean](https://ebean.io/) * [io.ebean:ebean-agent](https://ebean.io/) * [io.ebean:ebean-ddl-generator](https://ebean.io/) from 12.16.1 to 13.8.0. I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like...
We create a java play project with `sbt new playframework/play-java-seed.g8` Then we add play-ebean as dependency in project/plugins.sbt ```sbt addSbtPlugin("com.typesafe.play" % "sbt-play-ebean" % "6.2.0-RC7") ``` and build.sbt ```sbt lazy val...
### Play Version 2.7.0-RC8 - until now 2.7.1 ### API Java ### Operating System (Ubuntu 15.10 / MacOS 10.10 / Windows 10) WIndows 10 64-bit Enterprise ### JDK ``` java...
Updating from v6.2.0-RC4 to v6.2.0-RC7 has caused a regression where methods annotated with `javax.persistence.PrePersist` and `javax.persistence.PreUpdate` are not longer called before insertion or update. Example usage: https://github.com/seattle-uat/civiform/blob/main/server/app/models/Applicant.java#L74-L76
Fix proposal for #11. The solution is not perfect but it's all I have. The solution is to put the transactional action wrapper just before the real request. In this...
I don't have this issue with another plugin: https://github.com/payintech/play-ebean and it is working fine, except that plugin got an issue (https://github.com/payintech/play-ebean/issues/15) that making me try this one and this not...
I have just migrated from play 2.6 and an older version of play-ebean plugin to play 2.8 and version 6.0.0 of this plugin We have noticed a change of behavior...
Previously, there is documentation in the Play Framework website https://www.playframework.com/documentation/2.6.x/JavaEbean but when I use https://www.playframework.com/documentation/latest/JavaEbean it will redirect me to here, there is no reference and no documentation to how...
EbeanDynamicEvolutions has hardcoded references to the conf directory: ``` File evolutions = environment.getFile("conf/evolutions/" + key + "/1.sql"); Files.createDirectory(environment.getFile("conf/evolutions/" + key)); ```