I’ve a function updating a database table using Spring’s JdbcTemplate and for some reason there was exception about the fact that the connection is read only and can’t update any database related changes. How to resolve this problem?
I’ve a function updating a database table using Spring’s JdbcTemplate and for some reason
Share
Check the transaction property. Is it Read-Only?
http://static.springsource.org/spring/docs/2.0.x/reference/transaction.html
Try adding this to the datasource defination