RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
怎么在Mybatis中利用注解实现一个多表查询功能

今天就跟大家聊聊有关怎么在Mybatis中利用注解实现一个多表查询功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

从策划到设计制作,每一步都追求做到细腻,制作可持续发展的企业网站。为客户提供做网站、成都网站制作、网站策划、网页设计、国际域名空间、雅安服务器托管、网络营销、VI设计、 网站改版、漏洞修补等服务。为客户提供更好的一站式互联网解决方案,以客户的口碑塑造优易品牌,携手广大客户,共同发展进步。

1.项目结构

怎么在Mybatis中利用注解实现一个多表查询功能

2.领域类

public class Account implements Serializable{
  private Integer id;
  private Integer uid;
  private double money;
  private User user; //加入所属用户的属性
  省略get 和set 方法.............................    
}
public class User implements Serializable{
  private Integer userId;
  private String userName;
  private Date userBirthday;
  private String userSex;
  private String userAddress;
  private List accounts;
  省略get 和set 方法.............................    
}

在User中因为一个用户有多个账户所以添加Account的列表,在Account中因为一个账户只能属于一个User,所以添加User的对象。 

3.Dao层

public interface AccountDao {
  /**
   *查询所有账户并同时查询出所属账户信息
   */
  @Select("select * from account")
  @Results(id = "accountMap",value = {
      @Result(id = true,property = "id",column = "id"),
      @Result(property = "uid",column = "uid"),
      @Result(property = "money",column = "money"),
      //配置用户查询的方式 column代表的传入的字段,一对一查询用one select 代表使用的方法的全限定名, fetchType表示查询的方式为立即加载还是懒加载
      @Result(property = "user",column = "uid",one = @One(select = "com.example.dao.UserDao.findById",fetchType = FetchType.EAGER))
  })
  List findAll();
  /**
   * 根据用户ID查询所有账户
   * @param id
   * @return
   */
  @Select("select * from account where uid = #{id}")
  List findAccountByUid(Integer id);
}
public interface UserDao {
  /**
   * 查找所有用户
   * @return
   */
  @Select("select * from User")
  @Results(id = "userMap",value = {@Result(id = true,column = "id",property = "userId"),
      @Result(column = "username",property = "userName"),
      @Result(column = "birthday",property = "userBirthday"),
      @Result(column = "sex",property = "userSex"),
      @Result(column = "address",property = "userAddress"),
      @Result(column = "id",property = "accounts",many = @Many(select = "com.example.dao.AccountDao.findAccountByUid",fetchType = FetchType.LAZY))
  })
  List findAll();
  /**
   * 保存用户
   * @param user
   */
  @Insert("insert into user(username,birthday,sex,address) values(#{username},#{birthday},#{sex},#{address})")
  void saveUser(User user);
  /**
   * 更新用户
   * @param user
   */
  @Update("update user set username=#{username},birthday=#{birthday},sex=#{sex},address=#{address} where id=#{id}")
  void updateUser(User user);
  /**
   * 删除用户
   * @param id
   */
  @Delete("delete from user where id=#{id}")
  void deleteUser(Integer id);
  /**
   * 查询用户根据ID
   * @param id
   * @return
   */
  @Select("select * from user where id=#{id}")
  @ResultMap(value = {"userMap"})
  User findById(Integer id);
  /**
   * 根据用户名称查询用户
   * @param name
   * @return
   */
//  @Select("select * from user where username like #{name}")
  @Select("select * from user where username like '%${value}%'")
  List findByUserName(String name);
  /**
   * 查询用户数量
   * @return
   */
  @Select("select count(*) from user")
  int findTotalUser();

在findAll()方法中配置@Results的返回值的注解,在@Results注解中使用@Result配置根据用户和账户的关系而添加的属性,User中的属性List一个用户有多个账户的关系的映射配置:@Result(column = "id",property = "accounts",many = @Many(select = "com.example.dao.AccountDao.findAccountByUid",fetchType = FetchType.LAZY)),使用@Many来向Mybatis表明其一对多的关系,@Many中的select属性对应的AccountDao中的findAccountByUid方法的全限定名,fetchType代表使用立即加载或者延迟加载,因为这里为一对多根据前面的讲解,懒加载的使用方式介绍一对多关系一般使用延迟加载,所以这里配置为LAZY方式。在Account中存在多对一或者一对一关系,所以配置返回值属性时使用:@Result(property = "user",column = "uid",one = @One(select = "com.example.dao.UserDao.findById",fetchType = FetchType.EAGER)),property代表领域类中声明的属性,column代表传入后面select语句中的参数,因为这里为一对一或者说为多对一,所以使用@One注解来描述其关系,EAGER表示使用立即加载的方式,select代表查询本条数据时所用的方法的全限定名,fetchType代表使用立即加载还是延迟加载。

4.Demo中Mybatis的配置




  
    
    
    
    
    
    
    
  
  
    
    
  
  
    
      
      
      
      
        
        
        
        
      
    
  
  
    
  

主要是记得开启mybatis中sql执行情况的打印,方便我们查看执行情况。

5.测试

(1)测试查询用户同时查询出其账户的信息

测试代码:

public class UserTest {
  private InputStream in;
  private SqlSessionFactory sqlSessionFactory;
  private SqlSession sqlSession;
  private UserDao userDao;
  @Before
  public void init()throws Exception{
    in = Resources.getResourceAsStream("SqlMapConfig.xml");
    sqlSessionFactory = new SqlSessionFactoryBuilder().build(in);
    sqlSession = sqlSessionFactory.openSession();
    userDao = sqlSession.getMapper(UserDao.class);
  }
  @After
  public void destory()throws Exception{
    sqlSession.commit();
    sqlSession.close();
    in.close();
  }
  @Test
  public void testFindAll(){
    List userList = userDao.findAll();
    for (User user: userList){
      System.out.println("每个用户信息");
      System.out.println(user);
      System.out.println(user.getAccounts());
    }
  }

测试结果:

怎么在Mybatis中利用注解实现一个多表查询功能

(2)查询所有账户信息同时查询出其所属的用户信息

测试代码:

public class AccountTest {
  private InputStream in;
  private SqlSessionFactory sqlSessionFactory;
  private SqlSession sqlSession;
  private AccountDao accountDao;
  @Before
  public void init()throws Exception{
    in = Resources.getResourceAsStream("SqlMapConfig.xml");
    sqlSessionFactory = new SqlSessionFactoryBuilder().build(in);
    sqlSession = sqlSessionFactory.openSession();
    accountDao = sqlSession.getMapper(AccountDao.class);
  }
  @After
  public void destory()throws Exception{
    sqlSession.commit();
    sqlSession.close();
    in.close();
  }
  @Test
  public void testFindAll(){
    List accountList = accountDao.findAll();
    for (Account account: accountList){
      System.out.println("查询的每个账户");
      System.out.println(account);
      System.out.println(account.getUser());
    }
  }
}

测试结果:

怎么在Mybatis中利用注解实现一个多表查询功能

看完上述内容,你们对怎么在Mybatis中利用注解实现一个多表查询功能有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。


本文名称:怎么在Mybatis中利用注解实现一个多表查询功能
链接地址:http://sczitong.cn/article/ggsspg.html