Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
Hello I generate a simple java project with hibernate with the reverseengineeringtool. I use mysql innodb. Reading data is no problem. But when I try to save (insert) data and loog in the db the data is not inserted? The applications returns no exception. Must I say in every DAO class commit? Or can I enable somewhere a global autocommit?
If you use Base DAO you have make complete transaction handling.If you want declarative transaction handling the you can use Spring DAO.There isn’t automatic transaction handling, because nobody know when you want start or end transaction.