標籤: mybatisjava
[TOC]mysql
添加、刪除、更新用戶git
<!-- 添加用戶 parameterType:指定輸入 參數類型是pojo(包括 用戶信息) #{}中指定pojo的屬性名,接收到pojo對象的屬性值,mybatis經過OGNL獲取對象的屬性值 --> <insert id="insertUser" parameterType="com.iot.mybatis.po.User"> <!-- 將插入數據的主鍵返回,返回到user對象中 SELECT LAST_INSERT_ID():獲得剛insert進去記錄的主鍵值,只適用與自增主鍵 keyProperty:將查詢到主鍵值設置到parameterType指定的對象的哪一個屬性 order:SELECT LAST_INSERT_ID()執行順序,相對於insert語句來講它的執行順序 resultType:指定SELECT LAST_INSERT_ID()的結果類型 --> <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer"> SELECT LAST_INSERT_ID() </selectKey> INSERT INTO user (username,birthday,sex,address)values (#{username},#{birthday},#{sex},#{address}) <!-- 使用mysql的uuid()生成主鍵 執行過程: 首先經過uuid()獲得主鍵,將主鍵設置到user對象的id屬性中 其次在insert執行時,從user對象中取出id屬性值 --> <!-- <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.String"> SELECT uuid() </selectKey> insert into user(id,username,birthday,sex,address) value(#{id},#{username},#{birthday},#{sex},#{address}) --> </insert> <!-- 刪除 用戶 根據id刪除用戶,須要輸入 id值 --> <delete id="deleteUser" parameterType="java.lang.Integer"> delete from user where id=#{id} </delete> <!-- 根據id更新用戶 分析: 須要傳入用戶的id 須要傳入用戶的更新信息 parameterType指定user對象,包括 id和更新信息,注意:id必須存在 #{id}:從輸入 user對象中獲取id屬性值 --> <update id="updateUser" parameterType="com.iot.mybatis.po.User"> update user set username=#{username},birthday=#{birthday},sex=#{sex},address=#{address} where id=#{id} </update>
(注:這裏的birthday
字段在mysql表中是DATE類型,在User類中birthday
屬性是java的java.util.Date
類型,並無進行轉換就插入成功了。程序員
看到有的文章說,在字段中有Date和DateTime類型,在插入數據時只要將實體的屬性設置成Timestamp就會對應mysql的DateTime類型,Date會對應mysql的Date類型: #{modified_date,jdbcType=TIMESTAMP}、#{date,jdbcType=DATE}
github
我上面的birthday
,配置成#{birthday,jdbcType=TIMESTAMP}
,結果也插入成功了,具體實現待查)sql
// 添加用戶信息 @Test public void insertUserTest() throws IOException { // mybatis配置文件 String resource = "SqlMapConfig.xml"; // 獲得配置文件流 InputStream inputStream = Resources.getResourceAsStream(resource); // 建立會話工廠,傳入mybatis的配置文件信息 SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder() .build(inputStream); // 經過工廠獲得SqlSession SqlSession sqlSession = sqlSessionFactory.openSession(); // 插入用戶對象 User user = new User(); user.setUsername("王小軍"); user.setBirthday(new Date()); user.setSex("1"); user.setAddress("河南鄭州"); sqlSession.insert("test.insertUser", user); // 提交事務 sqlSession.commit(); // 獲取用戶信息主鍵 System.out.println(user.getId()); // 關閉會話 sqlSession.close(); } // 根據id刪除 用戶信息 @Test public void deleteUserTest() throws IOException { // mybatis配置文件 String resource = "SqlMapConfig.xml"; // 獲得配置文件流 InputStream inputStream = Resources.getResourceAsStream(resource); // 建立會話工廠,傳入mybatis的配置文件信息 SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder() .build(inputStream); // 經過工廠獲得SqlSession SqlSession sqlSession = sqlSessionFactory.openSession(); // 傳入id刪除 用戶 sqlSession.delete("test.deleteUser", 29); // 提交事務 sqlSession.commit(); // 關閉會話 sqlSession.close(); } // 更新用戶信息 @Test public void updateUserTest() throws IOException { // mybatis配置文件 String resource = "SqlMapConfig.xml"; // 獲得配置文件流 InputStream inputStream = Resources.getResourceAsStream(resource); // 建立會話工廠,傳入mybatis的配置文件信息 SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder() .build(inputStream); // 經過工廠獲得SqlSession SqlSession sqlSession = sqlSessionFactory.openSession(); // 更新用戶信息 User user = new User(); //必須設置id user.setId(27); user.setUsername("王大軍"); user.setBirthday(new Date()); user.setSex("2"); user.setAddress("河南鄭州"); sqlSession.update("test.updateUser", user); // 提交事務 sqlSession.commit(); // 關閉會話 sqlSession.close(); }
<selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer"> SELECT LAST_INSERT_ID() </selectKey>
若是沒有在上面的配置中配置resultType
,則會報下面的異常apache
org.apache.ibatis.exceptions.PersistenceException: ### Error updating database. Cause: org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'test.insertUser!selectKey'. It's likely that neither a Result Type nor a Result Map was specified. ### The error may exist in sqlmap/User.xml ### The error may involve test.insertUser!selectKey-Inline ### The error occurred while setting parameters ### SQL: SELECT LAST_INSERT_ID() ### Cause: org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'test.insertUser!selectKey'. It's likely that neither a Result Type nor a Result Map was specified. ... Caused by: org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'test.insertUser!selectKey'. It's likely that neither a Result Type nor a Result Map was specified.
#{}
和${}
#{}
表示一個佔位符號,#{}
接收輸入參數,類型能夠是簡單類型,pojo、hashmap。 若是接收簡單類型,#{}中能夠寫成value或其它名稱。 #{}
接收pojo對象值,經過OGNL讀取對象中的屬性值,經過屬性.屬性.屬性...的方式獲取對象屬性值。mybatis
${}
表示一個拼接符號,會引用sql注入,因此不建議使用${}
。 ${}
接收輸入參數,類型能夠是簡單類型,pojo、hashmap。 若是接收簡單類型,${}中只能寫成value。 ${}
接收pojo對象值,經過OGNL讀取對象中的屬性值,經過屬性.屬性.屬性...的方式獲取對象屬性值。app
是一個標準ORM框架(對象關係映射)。入門門檻較高的,不須要程序寫sql,sql語句自動生成了。對sql語句進行優化、修改比較困難的。框架
應用場景:適用與需求變化很少的中小型項目,好比:後臺管理系統,erp、orm、oa。。
專一是sql自己,須要程序員本身編寫sql語句,sql修改、優化比較方便。mybatis是一個不徹底的ORM框架,雖然程序員本身寫sql,mybatis也能夠實現映射(輸入映射、輸出映射)。
應用場景:適用與需求變化較多的項目,好比:互聯網項目。
企業進行技術選型,以低成本高回報做爲技術選型的原則,根據項目組的技術力量進行選擇。