码迷,mamicode.com
首页 > 数据库 > 详细

MyBatis动态SQL

时间:2017-06-25 10:14:25      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:suse   select   tostring   new   ring   ace   method   mybatis   app   

public interface UserMapper

{
  @SelectProvider(type="UserSqlProvider.class" method="selectWithParam")

  List<User> selectWithParam(Map<String,Object> param);
}

 

public classUserSqpProvider

{

  public String selectWithParam(Map<String,Object> param)

  {

  return new SQL(){

    {

      SELECT("*")

      FROM("User")

      if(param.get("id") != null)

      {

        WHERE(" id=#{id}")

      }

      ...

    }.toString();

  };

  }

}

 

MyBatis动态SQL

标签:suse   select   tostring   new   ring   ace   method   mybatis   app   

原文地址:http://www.cnblogs.com/tengfeixinxing/p/7075485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!