I have created one service in my grails application. in that service 25 methods are there. Some methods are for fetching data and passes to controller and some methods are for applying business logic and others are for database data CRUD operation.
Is it good idea to write multiple methods with different behavior to service? and Do I have to make service transactional?
and what is the use of default method
def serviceMethod() {
}
?
this method is created when I am creating new Service...