第一种 DAO层的函数方法 public User selectUser(String name,String area); 对应的Mapper.xml <select> select * from user_user_t where user_name = #{0} and user_area=#{1} </select> 其中,#{0}代表接收的是dao层中的第一个参数,#{1}代表dao层中第二参数,更多参数一致往后加即可。 第二种 此方法采用Map传多参数。 Dao层的函数方法 pu…
第一种 DAO层的函数方法 public User selectUser(String name,String area); 对应的Mapper.xml <select> select * from user_user_t where user_name = #{0} and user_area=#{1} </select> 其中,#{0}代表接收的是dao层中的第一个参数,#{1}代表dao层中第二参数,更多参数一致往后加即可。 第二种 此方法采用Map传多参数。 Dao层的函数方法 pu…
1、@service import org.springframework.stereotype.Service; @Service 作用: 例:@Service("userService")注解是告诉spring,当Spring要创建UserServiceImpl的的实例时,bean的名字必须叫做"userService",这样当Action需要使用UserServiceImpl的的实例时,就可以由Spring创建好的"userService",然后注入给Action。 注入Dao 2、@Transactiona…