我有一个如下的查询映射器:
<select id="searchSomething" parameterType="SomeType" resultType="SomeOtherType">
select xxxxx
from T_XXXX
where 1=1
<if test="propertyName == 'userName'">
and USER_NAME = #{propertyValue}
</if>
<if test="propertyName == 'address'">
and ADDRESS = #{propertyValue}
</if>
<if test="propertyName == 'taskDate'">
and TASK_DATE = #{propertyValue}
</if>
<if test="propertyName == 'phone1'">
and PHONE_1 = #{propertyValue}
</if>
<if test="propertyName == 'phone2'">
and PHONE_2 = #{propertyValue}
</if>
...
</select>
有很多属性。我如何简单地将属性名称映射到列名称,如下所示:
<select id="searchSomething" parameterType="SomeType" resultType="SomeOtherType">
select xxxxx
from T_XXXX
where 1=1
and
<propertyToColumn property="propertyName" />
= #{propertyValue}
</select>
MyBatis中是否有类似“propertyToColumn”的内容?
我在iBatis中找到了“insertColumnName”,是否从MyBatis中删除了?
parameterType是一个java类,如:
public class SomeType{
private String propertyName;
private String propertyValue;
... getters and setters
}
答案 0 :(得分:2)
这样做的一种方法是使用:
准备两个ArrayLists,一个使用propertyNames,另一个使用propertiesValues。 确保它们的顺序正确,即propValuesList [i]应该具有propNamesList [i]的值。
然后将其放入HashMap并将其作为输入传递给映射语句:
Map<String,Object> map = new HashMap<String,Object>();
List<String> propNamesList = new ArrayList<String>();
List<String> propValuesList = new ArrayList<String>();
propNamesList.add(0, "USER_NAME");
propNamesList.add(1, "ADDRESS");
propValuesList.add(0, "admin");
propValuesList.add(1, "hyderabad");
map.put("propNames",propNamesList);
map.put("propValues",propValuesList);
然后在映射语句中:
<select id="selectUsers" parameterType="hashmap" resultMap="UserResult">
select * from users
where 1 =1
<if test="propNames != null and propValues != null">
<foreach item="propName" index="index" collection="propNames">
and #{propName} = #{propValues[${index}]}
</foreach>
</if>
</select>
请注意使用 $ {index} 而非#{index} 。
答案 1 :(得分:1)
我认为如果在代码中执行“参数列”转换并将结果列作为参数传递可能会更好。在这种情况下,你可以这样做:
<select id="searchSomething" parameterType="SomeType" resultType="SomeOtherType">
select xxxxx
from T_XXXX
where 1=1
and
${propertyColumn} = #{propertyValue}
</select>
当然,您需要将 propertyColumn 添加到您的VO。