映射问题的解决办法(mybaitis)

最初我用的是注解来操控数据库(注释掉的部分)

复制代码
@Mapper
public interface ThreadMapper {

//	@Select("SELECT * FROM thread LIMIT #{page}, #{size}")
	List<Thread> getListByPage(@Param("page") int page, @Param("size") int size);

//	@Select("SELECT * FROM thread WHERE user_id = #{userId} LIMIT #{page}, #{size}")
	List<Thread> getListByPageAndUserId(@Param("page") int page, @Param("size") int size, @Param("userId") int userId);

//	@Insert("Insert into thread(user_id,title,content,create_time,update_time)" +
//			" values(#{userId},#{title},#{content},now(),now())")
	void addInfo(@Param("userId")int userId, @Param("title")String title, @Param("content")String content);
}

但是后面测试的时候发现映射出错(就是数据库与实体类没完全对上)

复制代码
{
    "code": 0,
    "message": "操作成功",
    "data": [
        {
            "id": 2,
            "title": "123456",
            "content": "123",
            "userId": 0,
            "creatTime": null,
            "updateTime": null
        }
    ]
}

解决办法:

第一种:

把数据库字段与实体类设为一样的(我没试过)

第二种:

用xml文件来配置映射(上步骤)

1、

复制代码
mybatis:
  type-aliases-package: usx.xwt.taotao.domain //实体类
  mapper-locations: classpath:/mapper/*.xml  //xml文件

这需要写在resource文件的配置文件下(我这里是.yml)

2、

复制代码
<?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">
<mapper namespace="usx.xwt.taotao.mapper.ThreadMapper">
    <resultMap id="threadResultMap" type="Thread">
        <id property="id" column="id"/>
        <result property="title" column="title"/> //映射
        <result property="content" column="content"/>
        <result property="userId" column="user_id"/>
        <result property="createTime" column="create_time" javaType="java.time.LocalDateTime"/>
        <result property="updateTime" column="update_time" javaType="java.time.LocalDateTime"/>
    </resultMap>

    <select id="getListByPageAndUserId" resultMap="threadResultMap">
        SELECT * FROM thread WHERE user_id = #{userId} LIMIT #{page}, #{size}
    </select>

    <select id="getListByPage" resultMap="threadResultMap">
        SELECT * FROM thread LIMIT #{page}, #{size}
    </select>

    <insert id="addInfo">
        Insert into thread(user_id,title,content,create_time,update_time) values(#{userId},#{title},#{content},now(),now())
    </insert>
</mapper>

3、这里的方法名需要与上面的数据库语句的id对应(记得加注解)

复制代码
@Mapper
public interface ThreadMapper {

	List<Thread> getListByPage(@Param("page") int page, @Param("size") int size);

	List<Thread> getListByPageAndUserId(@Param("page") int page, @Param("size") int size, @Param("userId") int userId);

	void addInfo(@Param("userId")int userId, @Param("title")String title, @Param("content")String content);
}
相关推荐
程序员张32 小时前
Maven编译和打包插件
java·spring boot·maven
ybq195133454313 小时前
Redis-主从复制-分布式系统
java·数据库·redis
weixin_472339463 小时前
高效处理大体积Excel文件的Java技术方案解析
java·开发语言·excel
小毛驴8504 小时前
Linux 后台启动java jar 程序 nohup java -jar
java·linux·jar
DKPT4 小时前
Java桥接模式实现方式与测试方法
java·笔记·学习·设计模式·桥接模式
好奇的菜鸟6 小时前
如何在IntelliJ IDEA中设置数据库连接全局共享
java·数据库·intellij-idea
程序视点6 小时前
Window 10文件拷贝总是卡很久?快来试试这款小工具,榨干硬盘速度!
windows
wuk9986 小时前
基于MATLAB编制的锂离子电池伪二维模型
linux·windows·github
DuelCode7 小时前
Windows VMWare Centos Docker部署Springboot 应用实现文件上传返回文件http链接
java·spring boot·mysql·nginx·docker·centos·mybatis
优创学社27 小时前
基于springboot的社区生鲜团购系统
java·spring boot·后端