YorkU-Citrus/Citrus

"synchronized" keyword should be used in every DAO method

mc256 opened this issue · 1 comments

mc256 commented

To avoid race condition, we should always consider this is a multi-thread programming situation. Use "synchronized" keyword is a simple solution for solving this problem.

image

mc256 commented

DONE