I\'m trying to write something into my database but it\'s not working despite it reporting \"Successfully completed request\". After the success everything seems to work fin
When using annotation-driven transactions, you should put @Transactional
annotation before your methods which are working with database. It could be either your DAO or Service methods. I can see that you have put @Transactional
on top of PaymentServiceImpl
but that is not the right place for that annotation.