Interesting. I wonder if "modern" Grails applicati...
# general
j
Interesting. I wonder if "modern" Grails applications have more annotations compared to the 2.2.x days. Things like
static transactional = true
have been replaced with
@Transactional
. Plus you have neat things like GORM data services which use
@Service(Book)
. On the other hand
@TestFor
has been completely replaced with the trait-based tests, so who knows?