公司項目用的SpringMVC+mybatis
自定義查詢語句,需要獲取三個參數如何傳送到xml的sql語句中
xml
定義parameterType=“map” ,sql語句例如:select * from user where ID=#{id} and NAME = #{name} and AGE = #{age}
在serviceImp中
Map map = new HashMap();
map.put("id",id);
map.put("name",name);
map.put("age",age);
然後獲取mybatis的session,使用session.selectList("命名空間+sqlID",map);serviceImp就可以將參數傳mybatais了
我在項目中是這樣使用的