I'm about to upgrade my Grails 3.2 web-app to version 3.3.
In particular, I created a BaseService
abstract class (located in /src/groovy
) providing several helper methods, and most of all my Grails services extend BaseService
.
import grails.artefact.Service
abstract class BaseService implements Service {
...
}
I noticed that with Grails 3.3 grails.artefact.Service
was deprecated, along with its superclass grails.events.Events
.
What can I use in place of Service
to avoid keeping references to deprecated classes?