mybatis使用全注解的方式案例(包含一对多关系映射)

简介: mybatis使用全注解的方式案例(包含一对多关系映射)

前面我写过ssh:ssh(Spring+Spring mvc+hibernate)简单增删改查案例 和ssm:ssm(Spring+Spring mvc+mybatis)的案例,需要了解的可以去看看,今天我写了一下ssm(spring+springmvc+mybatis)全注解的方式又重新写了一遍两表增删改查的案例,其中别的地方都一样,就是有几个文件不一样,

1.其中:

mybatis-config.xml中:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<settings>
     <!-- 打印查询语句 -->
     <setting name="logImpl" value="STDOUT_LOGGING" />
</settings>
<typeAliases>
  <typeAlias alias="Emp" type="org.entity.Emp"/>
  <typeAlias alias="Dept" type="org.entity.Dept"/>
</typeAliases>
  <mappers>
    <mapper class="org.dao.IEmpMapper"/>
     <mapper class="org.dao.IDeptMapper"/>
  </mappers>
</configuration>

注意看, ,mapper后面是class,不是resource,一定要注意

2.还有:我们不需要EmpMapper.xml和DeptMapper.xml文件,直接删掉就可以了

3.修改我们的IEmpMapper接口为:

package org.dao;
import java.util.List;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.One;
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.entity.Emp;
public interface IEmpMapper {
    //根据编号删除.
    @Delete("delete from emp where eid = #{eid} ")
    int deleteByPrimaryKey(Integer eid);
    //添加
    @Insert("insert into emp (eid, ename, eage,  edate, did) " +
            "values (#{eid,jdbcType=INTEGER}," +
            " #{ename,jdbcType=VARCHAR}, " +
            "#{eage,jdbcType=INTEGER},  " +
            "#{edate,jdbcType=TIMESTAMP}," +
            " #{did,jdbcType=INTEGER})")
    int insert(Emp record);
    //根据编号查询
    @Select("select * from emp where eid = #{eid}")
    @Results({
        @Result(id=true,property="eid",column="eid"),
        @Result(property="ename",column="ename"),
        @Result(property="eage",column="eage"),
        @Result(property="dept",column="did",javaType=org.entity.Dept.class,
        one=@One(select="org.dao.IDeptMapper.selectByPrimaryKey"))
    })
    Emp selectByPrimaryKey(Integer eid);
    //修改
    @Update("pdate emp " +
            " set ename = #{ename,jdbcType=VARCHAR}, " +
            " eage = #{eage,jdbcType=INTEGER}, " +
            " edate = #{edate,jdbcType=TIMESTAMP}, " +
            "  did = #{did,jdbcType=INTEGER} " +
            "where eid = #{eid,jdbcType=INTEGER}")
    int updateByPrimaryKey(Emp record);
    //查询全部
    @Select("select * from emp")
    @Results({
        @Result(id=true,property="eid",column="eid"),
        @Result(property="ename",column="ename"),
        @Result(property="eage",column="eage"),
        @Result(property="dept",column="did",javaType=org.entity.Dept.class,
        one=@One(select="org.dao.IDeptMapper.selectByPrimaryKey"))
    })
    List<Emp> findEmpAll();
    //根据部门编号查询员工信息
    @Select("select * from emp where did = #{dids}")
    @Results({
        @Result(id=true,property="eid",column="eid"),
        @Result(property="ename",column="ename"),
        @Result(property="eage",column="eage"),
        @Result(property="dept",column="did",javaType=org.entity.Dept.class,
        one=@One(select="org.dao.IDeptMapper.selectByPrimaryKey"))
    })
    List<Emp> findEmpByDept(int did);
}

4.修改我们的IDeptMapper接口为:

package org.dao;
import java.util.List;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Many;
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.entity.Dept;
public interface IDeptMapper {
    @Delete("delete from dept where id = #{id}")
    int deleteByPrimaryKey(Integer id);
    @Insert("insert into dept (id, name, loc )" +
            " values (#{id,jdbcType=INTEGER}, " +
            "#{name,jdbcType=VARCHAR}, " +
            "#{loc,jdbcType=VARCHAR})")
    int insert(Dept record);
    @Select("select * from dept where id  = #{id}")
    @Results({
        @Result(id=true,property="id",column="id"),
        @Result(property="name",column="name"),
        @Result(property="loc",column="loc"),
        @Result(property="empList",column="id",javaType=List.class,
        many=@Many(select="org.dao.IEmpMapper.findEmpByDept"))
    })
    Dept selectByPrimaryKey(Integer id);
    @Update("update dept " +
            "set name = #{name,jdbcType=VARCHAR}, " +
            " loc = #{loc,jdbcType=VARCHAR} " +
            "where id = #{id,jdbcType=INTEGER}")
    int updateByPrimaryKey(Dept record);
    @Select("select * from dept")
    List<Dept> findDeptAll();
}

然后就可以正常的主外键关联,包括查询显示,如图:

需要注意的是主外键映射,我总结了以下的方法,大家可以进行看一下:

一:
@Select("select * from dept where id  = #{id}")
    @Results({
        @Result(id=true,property="id",column="id"),
        @Result(property="name",column="name"),
        @Result(property="loc",column="loc"),
        @Result(property="实体类里面的属性",
        column="id",javaType=List.class,
        many=@Many(select="多方的接口.根据一方的编号查询多方的集合"))
    })
    Dept selectByPrimaryKey(Integer id);
多:
  //根据编号查询
    @Select("select * from emp where eid = #{eid}")
    @Results({
        @Result(id=true,property="eid",column="eid"),
        @Result(property="ename",column="ename"),
        @Result(property="eage",column="eage"),
         @Result(property="实体中的对象",column="外键列",javaType=一方类.class,
        one=@One(select="一方接口.根据一方编号查询信息"))
    })
    Emp selectByPrimaryKey(Integer eid);
     //查询全部
    @Select("select * from emp")
    @Results({
        @Result(id=true,property="eid",column="eid"),
        @Result(property="ename",column="ename"),
        @Result(property="eage",column="eage"),
        @Result(property="实体中的对象",column="外键列",javaType=一方类.class,
        one=@One(select="一方接口.根据一方编号查询信息"))
    })
    List<Emp> findEmpAll();
    //根据部门编号查询员工信息
    @Select("select * from emp where did = #{dids}")
    @Results({
        @Result(id=true,property="eid",column="eid"),
        @Result(property="ename",column="ename"),
        @Result(property="eage",column="eage"),
        @Result(property="实体中的对象",column="外键列",javaType=一方类.class,
        one=@One(select="一方接口.根据一方编号查询信息"))
    })
    List<Emp> findEmpByDept(int did);

按照这个方法配置保证阿弥陀佛了!!!

下面就是源码:

控制器:

DeptController

EmpController

Dao层:

IDeptMapper

IEmpMapper

DaoImpl层:

DeptMapperImpl

EmpMapperImpl

实体类层:

Dept

Emp

Service层:

IDeptService

IEmpService

ServiceImpl层:

DeptServiceImpl

EmpServiceImpl

配置文件:

applicationContext-servlet.xml

applicationContext.xml

mybatis-config.xml

web.xml

前台页面:

index.jsp

saveDept.jsp

saveEmp.jsp

showDept.jsp

showEmp.jsp

updateDept.jsp

updateEmp.jsp


相关文章
|
13天前
|
SQL Java 数据库连接
【MyBatisPlus·最新教程】包含多个改造案例,常用注解、条件构造器、代码生成、静态工具、类型处理器、分页插件、自动填充字段
MyBatis-Plus是一个MyBatis的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。本文讲解了最新版MP的使用教程,包含多个改造案例,常用注解、条件构造器、代码生成、静态工具、类型处理器、分页插件、自动填充字段等核心功能。
【MyBatisPlus·最新教程】包含多个改造案例,常用注解、条件构造器、代码生成、静态工具、类型处理器、分页插件、自动填充字段
|
23天前
|
SQL 缓存 Java
MyBatis如何关闭一级缓存(分注解和xml两种方式)
MyBatis如何关闭一级缓存(分注解和xml两种方式)
63 5
|
23天前
|
Java 数据库连接 mybatis
Mybatis使用注解方式实现批量更新、批量新增
Mybatis使用注解方式实现批量更新、批量新增
45 3
|
1月前
|
SQL 存储 数据库
深入理解@TableField注解的使用-MybatisPlus教程
`@TableField`注解在MyBatis-Plus中是一个非常灵活和强大的工具,能够帮助开发者精细控制实体类与数据库表字段之间的映射关系。通过合理使用 `@TableField`注解,可以实现字段名称映射、自动填充、条件查询以及自定义类型处理等高级功能。这些功能在实际开发中,可以显著提高代码的可读性和维护性。如果需要进一步优化和管理你的MyBatis-Plus应用程
118 3
|
28天前
|
Java 数据库连接 mybatis
Mybatis使用注解方式实现批量更新、批量新增
Mybatis使用注解方式实现批量更新、批量新增
46 1
|
2月前
|
Java 数据库连接 Maven
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和MyBatis Generator,使用逆向工程来自动生成Java代码,包括实体类、Mapper文件和Example文件,以提高开发效率。
119 2
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
|
2月前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
58 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
|
2月前
|
前端开发 Java Apache
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个
本文详细讲解了如何整合Apache Shiro与Spring Boot项目,包括数据库准备、项目配置、实体类、Mapper、Service、Controller的创建和配置,以及Shiro的配置和使用。
364 1
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个
|
2月前
|
SQL Java 数据库连接
mybatis使用二:springboot 整合 mybatis,创建开发环境
这篇文章介绍了如何在SpringBoot项目中整合Mybatis和MybatisGenerator,包括添加依赖、配置数据源、修改启动主类、编写Java代码,以及使用Postman进行接口测试。
17 0
mybatis使用二:springboot 整合 mybatis,创建开发环境
|
2月前
|
Java 数据库连接 API
springBoot:后端解决跨域&Mybatis-Plus&SwaggerUI&代码生成器 (四)
本文介绍了后端解决跨域问题的方法及Mybatis-Plus的配置与使用。首先通过创建`CorsConfig`类并设置相关参数来实现跨域请求处理。接着,详细描述了如何引入Mybatis-Plus插件,包括配置`MybatisPlusConfig`类、定义Mapper接口以及Service层。此外,还展示了如何配置分页查询功能,并引入SwaggerUI进行API文档生成。最后,提供了代码生成器的配置示例,帮助快速生成项目所需的基础代码。