This repository has been archived by the owner on Dec 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
[grails4] NoClassDefFoundError on startup #14
Comments
There is much more to migrate for Grails 4.0.0. Hibernate Mappings, etc. has gone in Hibernate 5. |
We will start working on migrating our project to 4 soon. I planned on spending some time on the audit plugin as well.
…-Aaron
On Jul 14, 2019, at 5:31 PM, Robert Oschwald ***@***.***> wrote:
There is much more to migrate for Grails 4.0.0. Hibernate Mappings, etc. has gone in Hibernate 5.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@erichelgeson started to port to Grails4 already. Havn‘t checked the status of it, yet. |
He and I collaborated a bit a couple months ago on M1. He has a good list of migration issues. I had a few show stoppers that I ended up not having time to chase down. I do believe I have a working copy of the audit logging plugin though. I’ll push a working branch if I do.
…-Aaron
On Jul 14, 2019, at 11:33 PM, Robert Oschwald ***@***.***> wrote:
@erichelgeson started to port to Grails4 already. Haben‘t checked the status of it, yet.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
I have a Grails 4 branch https://github.com/agileorbit/grails-schwartz/tree/eric/grails4 with it mostly working - 1 test failing right now. I chose to remove the automated changelog generation as it used many liquibase/hibernate methods that are now gone. Also while a nice feature, not critical for a M1 release. I'll ping @bobbywarner and see if we can push a M1 from my branch so people can get testing and temp ignore the 1 test failure (which may just be a race condition in the test) |
FYI there's a |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Grails 4.0.0.M1
Looks like the
QuartzService
is using the defunctgrails.transaction.Transactional
which has been removed in Grails 4.This causes a
NoClassDefFoundError
on startup in Grails 4.I think it should be using
grails.gorm.transactions.Transactional
instead.The text was updated successfully, but these errors were encountered: