Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.6.0, 2.0-M1
-
None
Description
In a route like this
from("xxx") .to("ibatis:selectOrderById") .to("bean:handleOrder")
Does not work as the current codebase expects to insert data when you produce data to it (or select all if body is null). This is kinda odd behavior.
So what we need is a new option to specify which operation on SqlMapClient to invoke
- queryForObject
- queryForList
- insert
- update
- delete