目前有这一需求,在数据库按照某条件检索如果数量大于一个数,默认就不插入,返回影响数据条目数应该为0.。
这样在插入时,参数一共两个一个是要插入的实体类另一个就是要判断的数量,这里mybaits的参数类型就要用map来进行传入,同时根据key值来直接获取。针对在插入时判断,就要采用insert into 数据表 select 具体值 from DUAL where 条件,这种语句来实现。
这里mapper.xml代码如下:
<insert id="insertSealUnderCount" parameterType="java.util.Map">
insert into tss(seal_id, seal_type)
select #{seal.sealId}, #{seal.sealType} from DUAL where (select count(*) from tss where status=1 or status=2) < #{count}
</insert>
对应dao层如下:
public int insertSealUnderCount(Map<String, Object> map);
测试类如下:
import java.util.HashMap;
import java.util.Map;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.Con