dao层方法中的@Param说明

采用@Param的方法可有多个参数

public void abc(@Param("userName") String name,@Param("password") String passWord);

而xxMapper.xml中的#{}中的参数则是根据@Param括号中的参数来获取相应的数据

<select>

       select * from testTable where username = #{userName}

</select>

上一篇:这些SQL查询小技巧,一般人我不告诉他


下一篇:数栈SQL优化案例:OR条件优化