-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where can I download 6.1.0 from? #221
Comments
From the internet they said, there is no answer for this, this question is there for a few months in #208 |
It will be fixed with #222 |
Is there any status update for this? Is there a chance that it may be releases sometime? |
I am happy to chip in and fix play-ebean, however that won't happen in december. If you want to support me, please consider donating to our collective: https://www.playframework.com/sponsors |
play-ebean 6.2.0-RC4 released, please have a look at the release notes how to upgrade: https://github.com/playframework/play-ebean/releases/tag/6.2.0-RC4. Please test and let us know if it works for you, thanks! |
First, Thank you very much for trying to help. I'm on very deep water here since I'm not sure why I'm running into this, but is seems like my project now compiles but the "Play enhancer" (or whatever it is, to clarify, I do NOT have So, in my project I originally have this: everything works as expected. If I change to following: then everything compiles but when running the application I get errors like:
I'm not sure if this is an issue with the updated SBT version or |
@franzgranlund I am pretty sure you have form classes which have
You can find more information here: https://www.playframework.com/documentation/2.8.x/JavaForms#Defining-a-form
|
@mkurz Thank you. You are correct, I have form classes with public fields. Your solution by adding |
@franzgranlund ebean got upgraded in RC4, so that might be the reason. The thing that changed by removing the play-enhancer is that there aren't getters and setters generated, so you could try to just add them to your public fields yourself (your IDE will help you to generate code) and see if lazy loading works again (if so then ebean needs those getters/setters for lazy loading to work). I am not really familiar with ebean since I never used it. |
@mkurz Yes, you are correct. I tested and Ebean needs getters and setters to work with lazy loading. I guess that this worked before since the play-enhancer was included in earlier play-ebean. It is quite easy to start using getters and setters I guess, and my IDE will help me, no problem. But just out of curiosity, why was play-enhancer removed and can I myself add it? I think it would be a good idea to clarify in the README that the play-enhancer is removed in this version of play-ebean. |
@franzgranlund I got same error with JSR, also problem with public fields ( #228 ) |
It was decided by Lightbend in May 2020 to archive repos they don't see a future in, like play-enhancer. I think there are problems with Java 11 as well. Not sure how hard it would be to support newer Java versions. FYI: I updated the release notes with notes about the problems you experienced and linked them in the README as well. |
The plugin version is listed in the README but it is not available anywhere
The text was updated successfully, but these errors were encountered: