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
It seems you miss the @Transactional annotation at the start of your DAO implementation class. It would explain why you don't have any transaction opened.
If it is not enough to solve your problem, could you give us your complete DAO implementation class ?