如何爲myBatis組件提供所需的查詢參數?我想用id選擇一個簡單的Select語句。最好的解決方案是可以直接從Cxf有效載荷中自動提取參數。如何將參數傳遞給Camel中的myBatis組件?
我沒有爲myBatis映射使用任何域類。 使用getAll方法時,路由工作正常。
到目前爲止,我的路線是這樣的:
@Override
public void configure() throws Exception {
from(cxfEndpoint).to("mybatis:getById?statementType=SelectList")
});
和我的映射配置:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="User">
<select id="getAll" resultType="map">
SELECT * FROM USERS
</select>
<select id="getById" parameterType="int" resultType="map">
SELECT * FROM USERS WHERE ID = #{id}
</select>
</mapper>
我明白[文檔]的方式(https://camel.apache.org/mybatis.html)的交換的主體具有要與一個的getId的對象()方法。 myBatis組件將使用返回的值來填充指定的參數。 – Ralf
@Ralf,沒有創建專用對象的方法嗎? –
至少文檔沒有提及任何有關能夠使用交換標題或存儲爲交換屬性的對象的任何信息。 – Ralf