hignattarge
New Member
I encounter a problem on accessing and updating data on mySQL in Spring framework, and I want to ask everyone the most efficient way to lock a TABLE row.Let's say I have two tables: one records all circles with their ids and positions, the other records all squares with the same columns. each circle's position can be modified independently, so do the squares. But squares' positions can also be adjusted by moving the position of the circles. pseudo-code as following:\[code\]Public ShapeMovingService{ @Transaction (isolation=required) public moveCirclePosition(int id, int newPosition){ //move circle=id to a new position //also move the square which relates to this circle accordingly } @Transaction (isolation=required) public moveSquarePosition(int id, int newPosition){ //move square=id to a new position } }public CircleDao extends JdbcTemplateSupport{ public updatePosition(int id, int position){ //query a circle from circle TABLE with id //update the position of the circle //ALSO: modify the position of the square which relates to this circle }} public SquareDao extends JdbcTemplateSupport{ public updatePosition(int id, int position){ //query a square from squareTABLE with id //update the position of the square }} \[/code\]I made several threads to do the following tasks:
- Two threads keep updating the position of the circle id=1
- One thread keeps updating the position of the circle id=2
- One thread keeps updating the position of the square id=1
- One thread keeps updating the position of the square id=2