第一个参数表示对应第几个参数第二个参数表示具体的值 比如:from table1 where userId=? and userpass=?这个hql需要两个参数query.setInteger(0,1001);//给userId传递参数query.setString(1,"abc");//给userpass传递参数