java web多线程修改数据库数据和查询数据库数据的同步问题

publicvoidupdate(){Stringsql="updategoodssetquantity=quantity+1wheregoods_id=1";try{s... public void update(){
String sql = "update goods set quantity=quantity+1 where goods_id=1 ";
try {
st = conn.createStatement();
st.executeUpdate(sql);
sql = "select quantity from goods where goods_id=1";
rs = st.executeQuery(sql);
if(rs.next()){
System.out.println(rs.getInt(1));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
public void run(){
for(int i=0;i<5;i++){
update();
}

}
public static void main(String[] args){
for(int i = 0; i<5; i++){
new MyThread().start();
}
}
结果:
126
127
128
129
131
131
132
133
134
135
137
138
139
141
141
143
144
144
145
147
148
148
149
149
150
出现相同的结果了,怎么办
展开
 我来答
lag087
2014-04-26 · 超过14用户采纳过TA的回答
知道答主
回答量:73
采纳率:0%
帮助的人:33.7万
展开全部
加上synchronized锁
追问
怎么加
追答
synchronized(this)

{
for(int i=0;i<5;i++){
update();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
佛曰你好吗
2014-04-26 · TA获得超过144个赞
知道答主
回答量:125
采纳率:50%
帮助的人:45.4万
展开全部
加同步锁public synchronized void update()
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友3bbc7a7
2014-04-26 · TA获得超过535个赞
知道小有建树答主
回答量:354
采纳率:66%
帮助的人:108万
展开全部
他们的回答赞一个,还可以用乐观锁
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式