Mybatis表单查询

Posted 呆萌老师博客号

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis表单查询相关的知识,希望对你有一定的参考价值。


 

/*
*作者:呆萌老师
*☑csdn认证讲师
*☑51cto高级讲师
*☑腾讯课堂认证讲师
*☑网易云课堂认证讲师
*☑华为开发者学堂认证讲师
*☑爱奇艺千人名师计划成员
*在这里给大家分享技术、知识和生活
*各种干货,记得关注哦!
*/

Mybatis表单查询_设置别名

查询条件多个:

  1. 创建查询类

   public class UserinfoCondition

  

   private String name;

  

   public String getName()

      return name;

  

   public void setName(String name)

      this.name = name;

  

   public Integer getAge()

      return age;

  

   public void setAge(Integer age)

      this.age = age;

  

   private Integer age;

2、设置别名 mybatis.xml

        <!-- 配置实体类的别名   如果不配置 则**Mapper.xml文件中   <select id="findUserList" resultType="User">  resultType需要加完整的包名 -->

   <typeAliases>

      <typeAlias type="com.test.bean.Userinfo" alias="Userinfo"/>

      <typeAlias type="com.test.condition.UserinfoCondition" alias="UserinfoCondition"/>

      <!-- <package name="com.atguigu.day03_mybaits.bean"/> -->

   </typeAliases>

3、UserinfoMapper中定义方法

    <!-- 根据名字和年龄查询学生 -->

   <select id="findUserByNameAndAge" parameterType="UserinfoCondition" resultType="Userinfo">

      select uid,name ,age  from userinfo where name=#name and age=#age

</select>


以上是关于Mybatis表单查询的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis动态SQL

mybatis中的#和$的区别

MyBatis

MyBatis

怎样查询HTML元素

SQL——MyBatis