主要内容:将数据库表的属性名修改。对mybatis语句进行优化。 idea引入MySQL
将数据库表的属性名修改
将大写改成下划线,如fileId改成file_id。红框中的is_delete是新增属性
对mybatis语句进行优化
前提:将实体类中的第二个单词的首字母改成大写,如:fileid改成fileId
添加一个resultMap:id是自定义的,底下select引用他时是根据这个id名来引用的;colum中是表的属性名,property是实体类中的属性名。
添加resultMap的好处:当数据库表中的属性名和实体类中属性名不一致时,这中方式可以帮我们直接进行匹配。特别是有些项目你会出现这种情况:一个叫id的属性,在数据库中叫file_id,在实体类中叫thisIsId(该处只是举例)
关于mybatis请参考这篇文章:mybatis使用
select标签中的语句你会发现有<where>和<if>,这些都是动态sql,想找相关资料可以看上面mybatis使用文章或者百度搜索“mybatis动态sql”
<?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="com.example.demo.dao.AllMapper">
<resultMap id="FileEntity" type="com.example.demo.entity.FileEntity">
<result column="file_id" property="fileId" />
<result column="file_name" property="fileName" />
<result column="file_size" property="fileSize" />
<result column="file_path" property="filePath" />
<result column="upload_time" property="uploadTime" />
<result column="delete_time" property="deleteTime" />
<result column="download_times" property="downloadTimes" />
</resultMap>
<insert id="addFile" parameterType="com.example.demo.entity.FileEntity">
insert into
files(file_name,file_size,file_path,upload_time)
values
(#{fileName},#{fileSize},#{filePath},#{uploadTime});
</insert>
<select id="selectFiles" resultMap="FileEntity">
select * from files
<where>
<if test="fileId != null and downloadTimes != 0">file_id = #{fileId}</if>
<if test="fileName != null">file_name like concat('%',#{fileName},'%')</if>
<if test="fileSize != null and fileSize != ''">file_size = #{fileSize}</if>
<if test="filePath != null">file_path = #{filePath}</if>
<if test="uploadTime != null">upload_time = #{uploadTime}</if>
<if test="deleteTime != null">delete_time = #{deleteTime}</if>
<if test="downloadTimes != null and downloadTimes != 0">download_times = #{downloadTimes}</if>
</where>
</select>
</mapper>
idea引入MySQL
这个就很有灵性
效果图
文章评论