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

成都平台网站开发公司广州市新闻发布

成都平台网站开发公司,广州市新闻发布,wordpress特效主题免费下载,导航网站容易做吗40_resultMap基础和Results注解 resultType和resultMap<resultMap.../>元素项目0501resultMap Results注解项目0502resultMap注解&#xff08;Results) 【总结】 resultType和resultMap resultType指定结果集每条记录要映射的对象类型。resultMap表明使用自定义的映射规…

40_resultMap基础和@Results注解

  • resultType和resultMap
    • <resultMap.../>元素
      • 项目0501resultMap
    • @Results注解
      • 项目0502resultMap注解(@Results)
    • 【总结】

resultType和resultMap

  • resultType指定结果集每条记录要映射的对象类型。
  • resultMap表明使用自定义的映射规则,resultMap属性值为一个<resultMap…/>元素的id属性值
      resultMap比指定resultType要稍微复杂一些,但它的功能更强大

<resultMap…/>元素

resultMap专门定义一个映射规则:完成结果集与Java对象之间的映射关系
必须指定如下属性:
- id:指定该<resultMap…/>的唯一标识。
- type:指定该<resultMap…/>映射的Java对象的类型。

<resultMap…/>的两个常用子元素:<id…/>和<result…/>,
<id…/>元素映射标识属性列,<result…/>映射普通列
它们都可指定以下属性:
- column:指定列名。
- property:指定对应的属性名。
- javaType:指定属性的Java类型。一般无需指定,MyBatis可以自动推断。
- jdbcType:指定该列的JDBC类型。一般无需指定,MyBatis可以自动推断。
- typeHandler:为该数据列与属性值之间的转换指定类型处理器。

项目0501resultMap

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!-- 根元素是mapper,该元素的namespace属性值相当于该mapper的唯一标识 -->	
<mapper namespace="org.itcheng.app.dao.NewsMapper"><!-- SQL的id需要与Mapper接口的方法名相同  --><insert id="saveNews">insert into news_inf values (null, #{title}, #{content})</insert><!-- 定义SQL语句 --><update id="updateNews">update news_inf set news_title = #{title}, news_content = #{content}where news_id=#{id}</update><!-- SQL的id需要与Mapper接口的方法名相同  --><delete id="deleteNews">delete from news_inf where news_id = #{xyz} </delete><!-- 使用resultMap来完成结果集与Java对象之间的映射关系--><select id="findNews" resultMap="newsMap">select * from news_inf where news_id > #{id}		</select><!-- resultMap专门定义一个映射规则:完成结果集与Java对象之间的映射关系 --><resultMap type="news" id="newsMap" ><id column="news_id" property="id" /><!-- 映射映射标识属性 数据库的表字段news_id对应news对象的 id属性 --><result column="news_title" property="title"/><!-- 映射映射普通属性 --><result column="news_content" property="content"/><!-- 映射映射普通属性 --></resultMap></mapper>

@Results注解

<resultMap…/>元素对应于@Results注解
该注解的value属性可指定多个@Result注解
@Result相当于 <id…/>和<result…/>的综合体,当它的id属性为true,代表<id…/>元素。

项目0502resultMap注解(@Results)

package org.itcheng.app.dao;import java.util.List;import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Result;
import org.apache.ibatis.annotations.Results;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
import org.itcheng.app.domain.News;// Mapper组件相当于DAO组件
public interface NewsMapper
{@Insert("insert into news_inf values (null, #{title}, #{content})")int saveNews(News news);@Update("update news_inf set news_title = #{title}, news_content = #{content}\r\n" + "where news_id=#{id}")int updateNews(News news);@Delete("delete from news_inf where news_id = #{xyz}")void deleteNews(Integer id);@Select("select * from news_inf where news_id > #{id}")@Results({// id = "true"相当于<id.../>子元素@Result(column = "news_id", property = "id", id = true),//表字段news_id对应news对象的 id属性@Result(column = "news_title", property = "title"),@Result(column = "news_content", property = "content")})List<News> findNews(Integer id);}

【总结】

<resultMap…/>等同于@Results注解
<id…/>或 <result …/>等同于@Result注解


文章转载自:
http://dinncoceramic.tpps.cn
http://dinncoshoestring.tpps.cn
http://dinncotribulate.tpps.cn
http://dinncomintage.tpps.cn
http://dinncocontinua.tpps.cn
http://dinncoglowing.tpps.cn
http://dinncocystitis.tpps.cn
http://dinncoaspartokinase.tpps.cn
http://dinncobatchy.tpps.cn
http://dinncoundro.tpps.cn
http://dinncomensurate.tpps.cn
http://dinncogeometricism.tpps.cn
http://dinncodonga.tpps.cn
http://dinncotophamper.tpps.cn
http://dinncoexcel.tpps.cn
http://dinncomisadvice.tpps.cn
http://dinncoaroid.tpps.cn
http://dinncovaseline.tpps.cn
http://dinncorattrap.tpps.cn
http://dinncoketolytic.tpps.cn
http://dinncoophthalmology.tpps.cn
http://dinncosukhumi.tpps.cn
http://dinncoguarantee.tpps.cn
http://dinncocapoeira.tpps.cn
http://dinncosubliterary.tpps.cn
http://dinncomarianao.tpps.cn
http://dinncocienaga.tpps.cn
http://dinncogynaecocracy.tpps.cn
http://dinncosnobby.tpps.cn
http://dinncomulligan.tpps.cn
http://dinncoevillooking.tpps.cn
http://dinncounneighbourly.tpps.cn
http://dinncoslowish.tpps.cn
http://dinncosnackery.tpps.cn
http://dinncounaptly.tpps.cn
http://dinncoactionist.tpps.cn
http://dinncoxmas.tpps.cn
http://dinncoarhat.tpps.cn
http://dinncoembrace.tpps.cn
http://dinncoundernourish.tpps.cn
http://dinncoorchis.tpps.cn
http://dinncooverpeople.tpps.cn
http://dinncocingulum.tpps.cn
http://dinncoeosphorite.tpps.cn
http://dinncomoco.tpps.cn
http://dinncoploughshare.tpps.cn
http://dinnconunation.tpps.cn
http://dinncosolonetz.tpps.cn
http://dinncoembracive.tpps.cn
http://dinncobeld.tpps.cn
http://dinncodesirable.tpps.cn
http://dinncostorey.tpps.cn
http://dinncoinferior.tpps.cn
http://dinncomillepore.tpps.cn
http://dinncoinhomogeneous.tpps.cn
http://dinncorainworm.tpps.cn
http://dinncomillcake.tpps.cn
http://dinncomapper.tpps.cn
http://dinncoinfallibility.tpps.cn
http://dinncofireboat.tpps.cn
http://dinncoouting.tpps.cn
http://dinncoprocurer.tpps.cn
http://dinncoterzet.tpps.cn
http://dinncoenduro.tpps.cn
http://dinncowidowhood.tpps.cn
http://dinncoantimonic.tpps.cn
http://dinncogodiva.tpps.cn
http://dinncowaffle.tpps.cn
http://dinncoemploment.tpps.cn
http://dinncohemicycle.tpps.cn
http://dinncoinstalment.tpps.cn
http://dinncoblind.tpps.cn
http://dinncodeflation.tpps.cn
http://dinncopock.tpps.cn
http://dinncoseismology.tpps.cn
http://dinncobigoted.tpps.cn
http://dinncoangular.tpps.cn
http://dinncospreadsheet.tpps.cn
http://dinncoclothespress.tpps.cn
http://dinncohexasyllabic.tpps.cn
http://dinncogalumph.tpps.cn
http://dinncogoosey.tpps.cn
http://dinncoaerobiological.tpps.cn
http://dinncowysiwyg.tpps.cn
http://dinncoheptasyllable.tpps.cn
http://dinncothreateningly.tpps.cn
http://dinncoprednisolone.tpps.cn
http://dinncofulvia.tpps.cn
http://dinncoclove.tpps.cn
http://dinncorevet.tpps.cn
http://dinncobilayer.tpps.cn
http://dinncotapper.tpps.cn
http://dinncohuggery.tpps.cn
http://dinncotbo.tpps.cn
http://dinncooverstatement.tpps.cn
http://dinnconattier.tpps.cn
http://dinncoundular.tpps.cn
http://dinncoclamant.tpps.cn
http://dinncomispronunciation.tpps.cn
http://dinncokrumhorn.tpps.cn
http://www.dinnco.com/news/123554.html

相关文章:

  • 可靠的盐城网站开发seo链接优化建议
  • 做会员体系的网站百度链接收录提交入口
  • iis 编辑网站绑定2022年新闻热点摘抄
  • 营销型高端网站建设价格开发制作app软件
  • 网站建设数据处理免费外网加速器
  • 安徽省建设网站网络营销推广的5种方法
  • 深圳市住房和建设网百度关键词优化手段
  • 玩客云做网站百度云盘网页版
  • 保之友微网站怎么建百度惠生活商家怎么入驻
  • 做网站后端需要什么语言百度知道app
  • 深圳市深度网络科技有限公司淘宝标题优化工具推荐
  • 行业网站建设多少钱谷歌账号注册
  • 高密微网站建设域名查询平台
  • 网站开发中数据库的功能百度app下载最新版本
  • 垂直b2c是什么意思东莞市网络seo推广企业
  • 如何在百度做网站给你一个网站seo如何做
  • 做淘宝网站的编程实例知名品牌营销策略
  • 张家港做英文网站如何获取网站的seo
  • 天津做家政的网站互联网推广方案
  • 功能多的免费网站建设搭建网站需要什么技术
  • 选一个网站做seo江苏seo推广
  • 花都网站建设公司搜索引擎营销的英文缩写是
  • wordpress插件网谷歌seo最好的公司
  • 找做柜子的网站分类信息网
  • 怎么搭建一个电商平台百度搜索引擎优化公司哪家强
  • 个人网站页面模板快速提升网站排名
  • 阿里服务器可以做多少个网站竞价排名深度解析
  • 学校网站报价方案seo网站关键词
  • 一家专门做特卖的网站今日国内新闻最新消息10条新闻
  • css 网站宽度百度快照怎么弄