synchronized « dao « Java Database Q&A





1. Is using synchronized on a Java DAO going to cause issues?    stackoverflow.com

Is using the 'synchronized' keyword on methods in a Java DAO going to cause issues when used by a web application? I ask because I have a multi-threaded stand alone application that ...

2. DAO methods and synchronized    stackoverflow.com

The following are methods I currently have in an Abstract DAO class. If there are concurrent calls, are they safe as they are or should synchronization be used? I know synchronization ...