搭建MyBatis操作數據庫
阿新 • • 發佈:2018-04-22
映射 width 配置 nbsp 目錄 版本 eight pdf releases
1、下載MyBatis壓縮包 https://github.com/mybatis/mybatis-3/releases,選擇合適版本的MyBatis
將其解壓到指定目錄,如下:
2、創建表格student
創建實體類
創建接口
3、在Dao包下創建映射文件studentMapper.xml,在src文件夾下創建配置文件MyBatis.xml
打開studentMapper.xml,在下載的MyBatis壓縮包中找到mybatis-3.3.0.pdf文件,引入相應的約束
在mapper映射中直接寫sql語句namespace必須有值,#{}大括號中必須與student實體類中的屬性名一致
打開mybatis.xml,在下載的MyBatis壓縮包中找到mybatis-3.3.0.pdf文件,引入相應的約束並
配置mybatis.xml核心配置文件
4、實現studentDao接口
5、測試
記 2018.4.22 晨
搭建MyBatis操作數據庫