Does @Transactional work on default methods
This won't work on private methods but not sure about default modifiers
Does @Transactional work on default methods
This won't work on private methods but not sure about default modifiers
 
    
    No, if you by default mean on package-protected. @Transactional will only work with public methods.
