You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In spring-orm-8.2.3.RELEASE the problem described in Ticket # 23943 is still present.
At line 405 txObject.setReadOnly(definition.isReadOnly());
txObject is of type JpaTransactionObject
line 378 : JpaTransactionObject txObject = (JpaTransactionObject) transaction;
method isReadOnly() is not in the service contract of JpaTransactionObject.
Because of this I get the following message : Caused by: java.lang.NoSuchMethodError: 'void org.springframework.orm.jpa.JpaTransactionManager$JpaTransactionObject.setReadOnly(boolean)' at org.springframework.orm.jpa.JpaTransactionManager.doBegin(JpaTransactionManager.java:405) ... 37 more