91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Mybatis中利用注解實現一個多表查詢功能

發布時間:2021-04-19 17:35:29 來源:億速云 閱讀:175 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關怎么在Mybatis中利用注解實現一個多表查詢功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

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<Account> 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<Account> findAll();
  /**
   * 根據用戶ID查詢所有賬戶
   * @param id
   * @return
   */
  @Select("select * from account where uid = #{id}")
  List<Account> 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<User> 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<User> findByUserName(String name);
  /**
   * 查詢用戶數量
   * @return
   */
  @Select("select count(*) from user")
  int findTotalUser();

  在findAll()方法中配置@Results的返回值的注解,在@Results注解中使用@Result配置根據用戶和賬戶的關系而添加的屬性,User中的屬性List<Account>一個用戶有多個賬戶的關系的映射配置:@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的配置

<?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>
    <!--&lt;!&ndash;開啟全局的懶加載&ndash;&gt;-->
    <!--<setting name="lazyLoadingEnabled" value="true"/>-->
    <!--&lt;!&ndash;關閉立即加載,其實不用配置,默認為false&ndash;&gt;-->
    <!--<setting name="aggressiveLazyLoading" value="false"/>-->
    <!--開啟Mybatis的sql執行相關信息打印-->
    <setting name="logImpl" value="STDOUT_LOGGING" />
    <!--<setting name="cacheEnabled" value="true"/>-->
  </settings>
  <typeAliases>
    <typeAlias type="com.example.domain.User" alias="user"/>
    <package name="com.example.domain"/>
  </typeAliases>
  <environments default="test">
    <environment id="test">
      <!--配置事務-->
      <transactionManager type="jdbc"></transactionManager>
      <!--配置連接池-->
      <dataSource type="POOLED">
        <property name="driver" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/test1"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
      </dataSource>
    </environment>
  </environments>
  <mappers>
    <package name="com.example.dao"/>
  </mappers>
</configuration>

  主要是記得開啟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<User> 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<Account> accountList = accountDao.findAll();
    for (Account account: accountList){
      System.out.println("查詢的每個賬戶");
      System.out.println(account);
      System.out.println(account.getUser());
    }
  }
}

測試結果:

怎么在Mybatis中利用注解實現一個多表查詢功能

看完上述內容,你們對怎么在Mybatis中利用注解實現一個多表查詢功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

上思县| 克东县| 进贤县| 儋州市| 漯河市| 新野县| 雷州市| 绥宁县| 花垣县| 义马市| 宜兰市| 顺平县| 青海省| 秭归县| 建德市| 阿勒泰市| 佛坪县| 汝阳县| 台南县| 旌德县| 张掖市| 卢湾区| 平舆县| 敦煌市| 河北区| 瑞昌市| 商水县| 新邵县| 汝南县| 永春县| 竹山县| 永城市| 建宁县| 宿州市| 梅河口市| 滕州市| 横峰县| 梨树县| 二连浩特市| 江川县| 湘西|