应对高并发的解决方案:
1、将压力放在数据库上面,添加行级锁。select * from table for update;
select * from table for update;
2、将压力放在应用程序上面,对方法加synchronized同步。