|
|
|
@ -1,39 +1,84 @@
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
|
|
|
|
|
|
<!-- 定义一个 MyBatis 的 Mapper,命名空间为 com.dao.NewsDao,
|
|
|
|
|
用于关联对应的 DAO 接口,在后续的 Java 代码中可以通过该命名空间找到此 Mapper 中的方法 -->
|
|
|
|
|
<mapper namespace="com.dao.NewsDao">
|
|
|
|
|
|
|
|
|
|
<!-- 可根据自己的需求,是否要使用 -->
|
|
|
|
|
<resultMap type="com.entity.NewsEntity" id="newsMap">
|
|
|
|
|
<result property="title" column="title"/>
|
|
|
|
|
<result property="introduction" column="introduction"/>
|
|
|
|
|
<result property="picture" column="picture"/>
|
|
|
|
|
<result property="content" column="content"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
<!--
|
|
|
|
|
定义一个结果映射,可根据实际需求选择是否使用。
|
|
|
|
|
这个结果映射用于将从数据库查询到的结果映射到 com.entity.NewsEntity 实体类上。
|
|
|
|
|
type 属性指定了目标实体类,id 属性为该结果映射赋予了唯一标识,便于在其他地方引用。
|
|
|
|
|
-->
|
|
|
|
|
<resultMap type="com.entity.NewsEntity" id="newsMap">
|
|
|
|
|
<!-- 将数据库表中 news 表的 title 列的值映射到实体类 NewsEntity 的 title 属性 -->
|
|
|
|
|
<result property="title" column="title"/>
|
|
|
|
|
<!-- 将数据库表中 news 表的 introduction 列的值映射到实体类 NewsEntity 的 introduction 属性 -->
|
|
|
|
|
<result property="introduction" column="introduction"/>
|
|
|
|
|
<!-- 将数据库表中 news 表的 picture 列的值映射到实体类 NewsEntity 的 picture 属性 -->
|
|
|
|
|
<result property="picture" column="picture"/>
|
|
|
|
|
<!-- 将数据库表中 news 表的 content 列的值映射到实体类 NewsEntity 的 content 属性 -->
|
|
|
|
|
<result property="content" column="content"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
定义一个查询方法,方法名为 selectListVO。
|
|
|
|
|
resultType 属性指定了该查询方法的结果类型为 com.entity.vo.NewsVO。
|
|
|
|
|
此方法用于从 news 表中查询满足特定条件的所有记录(条件通过 ${ew.sqlSegment} 动态传入),
|
|
|
|
|
并将查询结果映射为 com.entity.vo.NewsVO 类型的对象列表。
|
|
|
|
|
-->
|
|
|
|
|
<select id="selectListVO"
|
|
|
|
|
resultType="com.entity.vo.NewsVO" >
|
|
|
|
|
SELECT * FROM news news
|
|
|
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
resultType="com.entity.vo.NewsVO" >
|
|
|
|
|
<!-- 从 news 表中查询所有列的数据 -->
|
|
|
|
|
SELECT * FROM news news
|
|
|
|
|
<!-- where 标签用于动态构建查询条件,1 = 1 是为了方便后续拼接条件,
|
|
|
|
|
当 ${ew.sqlSegment} 有值时,会在 1 = 1 后面拼接具体的查询条件部分 -->
|
|
|
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
定义一个查询方法,方法名为 selectVO。
|
|
|
|
|
resultType 属性指定了该查询方法的结果类型为 com.entity.vo.NewsVO。
|
|
|
|
|
此方法用于从 news 表中查询满足特定条件的单条记录(条件通过 ${ew.sqlSegment} 动态传入),
|
|
|
|
|
并将查询结果映射为单个 com.entity.vo.NewsVO 类型的对象。
|
|
|
|
|
-->
|
|
|
|
|
<select id="selectVO"
|
|
|
|
|
resultType="com.entity.vo.NewsVO" >
|
|
|
|
|
SELECT news.* FROM news news
|
|
|
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
resultType="com.entity.vo.NewsVO" >
|
|
|
|
|
<!-- 从 news 表中查询所有列的数据 -->
|
|
|
|
|
SELECT news.* FROM news news
|
|
|
|
|
<!-- where 标签用于动态构建查询条件,1 = 1 是为了方便后续拼接条件,
|
|
|
|
|
当 ${ew.sqlSegment} 有值时,会在 1 = 1 后面拼接具体的查询条件部分 -->
|
|
|
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectListView"
|
|
|
|
|
resultType="com.entity.view.NewsView" >
|
|
|
|
|
|
|
|
|
|
SELECT news.* FROM news news
|
|
|
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
<!--
|
|
|
|
|
定义一个查询方法,方法名为 selectListView。
|
|
|
|
|
resultType 属性指定了该查询方法的结果类型为 com.entity.view.NewsView。
|
|
|
|
|
此方法用于从 news 表中查询满足特定条件的所有记录(条件通过 ${ew.sqlSegment} 动态传入),
|
|
|
|
|
并将查询结果以视图对象的形式(com.entity.view.NewsView 类型的对象列表)返回。
|
|
|
|
|
-->
|
|
|
|
|
<select id="selectListView"
|
|
|
|
|
resultType="com.entity.view.NewsView" >
|
|
|
|
|
<!-- 从 news 表中查询所有列的数据 -->
|
|
|
|
|
SELECT news.* FROM news news
|
|
|
|
|
<!-- where 标签用于动态构建查询条件,1 = 1 是为了方便后续拼接条件,
|
|
|
|
|
当 ${ew.sqlSegment} 有值时,会在 1 = 1 后面拼接具体的查询条件部分 -->
|
|
|
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
定义一个查询方法,方法名为 selectView。
|
|
|
|
|
resultType 属性指定了该查询方法的结果类型为 com.entity.view.NewsView。
|
|
|
|
|
此方法用于从 news 表中查询满足特定条件的单条记录(条件通过 ${ew.sqlSegment} 动态传入),
|
|
|
|
|
并将查询结果以视图对象的形式(单个 com.entity.view.NewsView 类型的对象)返回。
|
|
|
|
|
-->
|
|
|
|
|
<select id="selectView"
|
|
|
|
|
resultType="com.entity.view.NewsView" >
|
|
|
|
|
SELECT * FROM news news <where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
resultType="com.entity.view.NewsView" >
|
|
|
|
|
<!-- 从 news 表中查询所有列的数据 -->
|
|
|
|
|
SELECT * FROM news news
|
|
|
|
|
<!-- where 标签用于动态构建查询条件,1 = 1 是为了方便后续拼接条件,
|
|
|
|
|
当 ${ew.sqlSegment} 有值时,会在 1 = 1 后面拼接具体的查询条件部分 -->
|
|
|
|
|
<where> 1=1 ${ew.sqlSegment}</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|
|
|
|
|
</mapper>
|