当前位置: 首页 > news >正文

广昌网站建设制作如何做推广呢

广昌网站建设制作,如何做推广呢,想搞网站建设,济宁做网站建设的公司Mybatis返回值接收 可以使用两种方式进行参数的接收 resultTyperesultMap 这两种分别都是需要在Mapper.xml文件中去设置的 当结果是一个简单的对象或者list或者map,对象中没有嵌套对象,或者集合时,就可以直接使用resultType 反之如果需要…

Mybatis返回值接收

可以使用两种方式进行参数的接收

  • resultType
  • resultMap

这两种分别都是需要在Mapper.xml文件中去设置的

当结果是一个简单的对象或者list或者map,对象中没有嵌套对象,或者集合时,就可以直接使用resultType

反之如果需要返回的值是一个复杂对象,其中包含list或者map的时候,就需要使用resultMap去确定返回值格式

1 使用 resultType

<sql id="basicSelect">id,name,age,address,emp_detail
</sql>
  • 查询单个Map对象

    <select id="selectUsers" resultType="map">select id, username, hashedPasswordfrom some_tablewhere id = #{id}
    </select>
    
    Map selectUsers(Long id);
    
  • 查询具体单个对象

    <select id="selectEmpById" resultType="cn.sycoder.domain.Employee">select<include refid="basicSelect"></include>from employee  where id = #{id}</select>
    <!--    定义sql-->
    <sql id="basicSelect">id,name,age,address,emp_detail
    </sql>
    
    Employee selectEmpById(Long id);
    
  • 查询集合对象

    <select id="selectEmp" resultType="cn.sycoder.domain.Employee">select<include refid="basicSelect"></include>from employeewhere id = #{id}
    </select>
    
    List<Employee> selectEmp(Long id);
    
  • 查询单个值

    <select id="selectCount" resultType="java.lang.Integer">select count(*) from employee
    </select>
    
    Integer selectCount();
    

2 使用 resultMap

2.1 简单使用

  • 应用场景:实体类属性和数据库列名不匹配的时候(比如,数据库采用经典命名法,java 使用驼峰命名法的时候)

    <resultMap id="basicMap" type="cn.sycoder.domain.Employee">
    <!--        设置数据库id 的对应字段--><id property="id" column="id"></id><result property="empDetail" column="emp_detail"></result><result property="name" column="name"></result></resultMap><select id="selectEmpById" resultMap="basicMap">select<include refid="basicSelect"></include>from employee  where id = #{id}</select>
    

    在这里插入图片描述

  • 解决方式2

       <settings><setting name="mapUnderscoreToCamelCase" value="true"/></settings>
    
  • id & result
    <id property="id" column="post_id"/>
    <result property="subject" column="post_subject"/>
    
  • id & result 属性

    属性描述
    property映射到列结果的字段或属性。如果 JavaBean 有这个名字的属性(property),会先使用该属性。否则 MyBatis 将会寻找给定名称的字段(field)。无论是哪一种情形,你都可以使用常见的点式分隔形式进行复杂属性导航。 比如,你可以这样映射一些简单的东西:“username”,或者映射到一些复杂的东西上:“address.street.number”。 stu.name
    column数据库中的列名,或者是列的别名。一般情况下,这和传递给 resultSet.getString(columnName) 方法的参数一样。
    javaType一个 Java 类的全限定名,或一个类型别名(关于内置的类型别名,可以参考上面的表格)。 如果你映射到一个 JavaBean,MyBatis 通常可以推断类型。然而,如果你映射到的是 HashMap,那么你应该明确地指定 javaType 来保证行为与期望的相一致。

2.2多结果集处理前期准备

  • 新建学生和班级表

    在这里插入图片描述

    在这里插入图片描述

    create table class
    (id bigint auto_incrementprimary key,name varchar(64) null
    );create table student
    (id bigint auto_incrementprimary key,name varchar(64) null,age int null,class_id bigint null,constraint student_class_id_fkforeign key (class_id) references class (id)
    );insert into class values (null,'软工1班'),(null,'计科2班');insert into student (id, name, age,class_id)
    values (null,'sy',18,1),(null,'zs',19,1),(null,'zz',20,1),(null,'小明',22,2);

2.3一对多处理

  • collection :使用 collection 就可以获取到多个结果集对象

  • 一个班级对应多个学生

  • 操作

    • 第一步,新建 mapper 方法

      public interface ClassMapper {MyClass getById(Long id);
      }
      
    • 第二步,编写 xml

      <resultMap id="basicMap" type="cn.sycoder.domain.MyClass"><id property="id" column="id"></id><result property="name" column="name"></result>
      <!--        获取学生信息信息--><collection property="stus" ofType="cn.sycoder.domain.Student"><id property="id" column="sId"></id><result property="name" column="sName"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result></collection></resultMap><select id="getById" resultMap="basicMap">selectc.*,s.id sId,s.name sName,s.age,s.class_idfromclass c left join student s on c.id = s.class_idwhere c.id = #{id}</select>
      

2.4多对一的处理

  • 关联(association):如果我的类里面有其它对象的关联关系,可以使用 association 来进行操作

    属性描述
    property映射到列结果的字段或属性。如果用来匹配的 JavaBean存在给定名字的属性,那么它将会被使用。否则 MyBatis 将会寻找给定名称的字段。无论是哪一种情形,你都可以使用通常的点式分隔形式进行复杂属性导航。比如,你可以这样映射一些简单的东西:“username”,或者映射到一些复杂的东西上:“address.street.number”。
    javaType一个 Java 类的完全限定名,或一个类型别名(关于内置的类型别名,可以参考上面的表格)。 如果你映射到一个 JavaBean,MyBatis 通常可以推断类型。然而,如果你映射到的是HashMap,那么你应该明确地指定 javaType 来保证行为与期望的相一致。
  • 传统操作

    • 使用级联操作

       <resultMap id="basicMap" type="cn.sycoder.domain.Student"><id property="id" column="id"></id><result property="name" column="name"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result><result property="cls.id" column="cId"></result><result property="cls.name" column="cName"></result></resultMap><select id="listAllStus" resultMap="basicMap">selectstu.*,c.id cId,c.name cNamefromstudent stu left join class c on stu.class_id = c.id</select>
      
  • 使用 association 操作

    • 代码

      <resultMap id="AssociationMap" type="cn.sycoder.domain.Student"><id property="id" column="id"></id><result property="name" column="name"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result><association property="cls" javaType="cn.sycoder.domain.MyClass"><id property="id" column="cId"></id><result property="name" column="cName"></result></association></resultMap><select id="listAllStusByAssociation" resultMap="AssociationMap">selectstu.*,c.id cId,c.name cNamefromstudent stu left join class c on stu.class_id = c.id</select>
      

3 嵌套 select 查询

  • 以多条sql 的方式执行

3.1关联关系 assciation select

  • 查询学生信息,包含班级信息

    <resultMap id="AssociationSelectMap" type="cn.sycoder.domain.Student"><id property="id" column="id"></id><result property="name" column="name"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result><association property="cls" column="class_id"select="cn.sycoder.mapper.StudentMapper.getClassById"/></resultMap><select id="listAllStusByAssociationSelect" resultMap="AssociationSelectMap">select * from student</select><select id="getClassById" resultType="cn.sycoder.domain.MyClass">select * from class where id = #{id}</select>
    
  • 如果关联的是多个结果集使用 resultSet

    属性描述
    column当使用多个结果集时,该属性指定结果集中用于与 foreignColumn 匹配的列(多个列名以逗号隔开),以识别关系中的父类型与子类型。
    foreignColumn指定外键对应的列名,指定的列将与父类型中 column 的给出的列进行匹配。
    resultSet指定用于加载复杂类型的结果集名字。
    <resultMap id="blogResult" type="Blog"><id property="id" column="id" /><result property="title" column="title"/><association property="author" javaType="Author" resultSet="authors" column="author_id" foreignColumn="id"><id property="id" column="id"/><result property="username" column="username"/><result property="password" column="password"/><result property="email" column="email"/><result property="bio" column="bio"/></association>
    </resultMap>
    

3.2 collection select

  • 需求:通过班级去查学生,使用嵌套 select 查询

    <resultMap id="collectionSelect" type="cn.sycoder.domain.MyClass"><id property="id" column="id"></id><result property="name" column="name"></result><!--        获取学生信息信息--><collection property="stus" ofType="cn.sycoder.domain.Student"select="getStudentByClassId"    column="id"/></resultMap><select id="getByClassId" resultMap="collectionSelect">select * from class where id = #{id}</select><select id="getStudentByClassId" resultType="cn.sycoder.domain.Student">select * from student where class_id = #{id}</select>
    

3.3 关联查询的总结

  • 优点:
    • 可以实现延迟加载,前提是要配置
    • sql 写起来变得简单了
  • 缺点:
    • 发起了多条 sql,正常查询只发起一条sql
http://www.yidumall.com/news/91696.html

相关文章:

  • 网站所有二级目录网站推广app下载
  • 企业网站建设 租用服务器网络营销与直播电商好就业吗
  • 网站建设方案设计网站排名提高
  • wordpress 外贸郑州纯手工seo
  • 建一个网页网站seo公司上海牛巨微
  • 注册域名怎么做网站上海十大营销策划公司排名
  • 牛商网网站后台郑州网站策划
  • 怎样制作微信网站广州网站优化
  • 网站怎么做微博认证互联网营销软件
  • 张店免费做网站百度购物平台客服电话
  • 手机网站菜单栏怎么做阿里云域名注册
  • 网站发展趋势班级优化大师学生版
  • 上海城乡住房建设厅网站东莞网站制作外包
  • 哈尔滨的网站建设公司微信营销系统
  • 无锡大型网站建设公司志鸿优化设计官网
  • 医院网站系统源码网站seo推广计划
  • 网站建设实训致谢语调研报告万能模板
  • 做三个月网站广告收入网站代运营推广
  • 合肥网站制作方案私域流量和裂变营销
  • php靓号网站源码厦门seo关键词优化
  • 网店设计思路怎么写余姚seo智能优化
  • 泸州大浪科技做网站合肥网站推广助理
  • wordpress访问统计西安搜索引擎优化
  • 深圳app开发公司排名前十windows系统优化软件
  • 哪些网站有好的营销案例枸橼酸西地那非片多长时间见效
  • 博物馆展柜谷歌优化的最佳方案
  • 新手学做网站图纸青岛seo青岛黑八网络最强
  • 网站可以做多少个关键词优化网站seo
  • 云南城市建设职业学院网站怎么投放广告
  • 网站怎么做二维码百度平台商家客服