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

溫馨提示×

溫馨提示×

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

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

Mybatis中怎么實現注解增刪改查操作

發布時間:2021-08-05 16:26:44 來源:億速云 閱讀:117 作者:Leah 欄目:編程語言

這篇文章給大家介紹Mybatis中怎么實現注解增刪改查操作,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

需要在config.xml中注冊Java接口

<mappers>
 <mapper class="com.mybatis.DAO.PeopleMapper"/>
</mappers>

要用class=

public interface PeopleMapper {
 @Select("select * from people")
 List<People> getPeopleList();
}

增 可以先開啟事務自動提交

public static SqlSession getSqlSession(){
  return sqlSessionFactory.openSession(true);
 }
}
Mapper.java
```java
public interface PeopleMapper {
 @Select("select * from people")
 List<People> getPeopleList();
 @Insert("insert into people(id, name, age, address) VALUES (#{id},#{name},#{age},#{address})")
 int addPeople(People people);
}

test

public class PeopleDAOtest {
 [@Test](https://my.oschina.net/azibug)
 public void print() {
  SqlSession sqlSession = MybatisUtils.getSqlSession();
  PeopleMapper peopleMapper = sqlSession.getMapper(PeopleMapper.class);
  List<People> people = peopleMapper.getPeopleList();
  for (People p :people){
   System.out.println(p);
  }
  sqlSession.close();
 }
 [@Test](https://my.oschina.net/azibug)
 public void add(){
  SqlSession sqlSession = MybatisUtils.getSqlSession();
  PeopleMapper peopleMapper = sqlSession.getMapper(PeopleMapper.class);
  peopleMapper.addPeople(new People(6,"圣迭戈",456,"啥地方"));
  print();
 }
}

因為已經自動提交了,所以不需要sqlSession.commit();

注解@Param 只能用于基本數據類型 傳入的參數只能和sql語句中參數一樣 Mybatis中怎么實現注解增刪改查操作 多個參數 Mybatis中怎么實現注解增刪改查操作 樣例

public interface PeopleMapper {
 @Delete("delete people from people where id=#{uid}")
 int delPeople(@Param("uid") int i);
}

test

public class PeopleDAOtest {
 @Test
 public void del(){
  SqlSession sqlSession = MybatisUtils.getSqlSession();
  PeopleMapper peopleMapper = sqlSession.getMapper(PeopleMapper.class);
  peopleMapper.delPeople(6);
  print();
 }
}

Mapper.java

public interface PeopleMapper {
 @Update("update mybatis.people set name=#{name} ,age=#{age} ,address=#{address} where id=#{id}")
 int updateP(People people);
}

test

public class PeopleDAOtest {
 @Test
 public void update(){
  SqlSession sqlSession = MybatisUtils.getSqlSession();
  PeopleMapper peopleMapper = sqlSession.getMapper(PeopleMapper.class);
  peopleMapper.updateP(new People(5,"圣迭戈",456,"啥地方"));
  print();
 }
}

關于Mybatis中怎么實現注解增刪改查操作就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

固镇县| 五常市| 普陀区| 辉南县| 亳州市| 昆山市| 满洲里市| 河东区| 水城县| 宜昌市| 大兴区| 陆河县| 苏尼特左旗| 南平市| 会同县| 黄平县| 宁河县| 鸡泽县| 咸宁市| 菏泽市| 靖西县| 远安县| 金乡县| 康定县| 雅安市| 琼海市| 巴彦县| 紫阳县| 筠连县| 九台市| 威信县| 浦城县| 景泰县| 华亭县| 慈溪市| 碌曲县| 冷水江市| 肃宁县| 舞阳县| 柯坪县| 胶州市|