Hello:
I wonder if someone has built a SearchConditionVisitor for MyBatis SQL object
I mean , in MyBatis, it's possible to build dynamically a SQL object like
return new SQL()
.INSERT_INTO("PERSON")
.INTO_COLUMNS("ID", "FULL_NAME")
.INTO_VALUES("#{id}", "#{fullName}")
I would like if there is some like
org.apache.cxf.jaxrs.ext.search.jpa.JPACriteriaQueryVisitor and
org.apache.cxf.jaxrs.ext.search.jpa.JPATypedQueryVisitor ,
for MyBatis
Reference : http://www.mybatis.org/mybatis-3/statement-builders.html
If not, I guess that I will have to started on next days :-)
Regards