簡介
成都創(chuàng)新互聯(lián)公司始終堅持【策劃先行,效果至上】的經(jīng)營理念,通過多達(dá)十載累計超上千家客戶的網(wǎng)站建設(shè)總結(jié)了一套系統(tǒng)有效的全網(wǎng)整合營銷推廣解決方案,現(xiàn)已廣泛運(yùn)用于各行各業(yè)的客戶,其中包括:成都OPP膠袋等企業(yè),備受客戶表揚(yáng)。
SpringBoot和Mybatis是啥請自行百度,作者這里也是花了幾天時間入門了這個框架用來完成任務(wù),并且也算符合要求的完成了任務(wù),期間也各種百度但是沒找到自己想要的那種簡單易懂的教程,所以踩了很多坑,寫這個博客的目的就是為了讓大家少踩一點(diǎn)坑,開始。
創(chuàng)建一個SpringBoot項目https://start.spring.io/
點(diǎn)開這個網(wǎng)站,創(chuàng)建一個Springboot項目,如下圖,這里用的是2.1.5,學(xué)技術(shù)嘛,就是要學(xué)新的。
選擇依賴,點(diǎn)擊左下角的Dependencies
最后點(diǎn)擊左下角的Generate Project,將會開始下載一個以你項目名稱開頭的zip文件,下載完成后解壓到你的工作目錄。
打開這個項目
這里使用的是IDEA,別的啥也行比如eclipse,這里只講解IDEA的操作,安裝破解IDEA百度一大堆,安裝好之后打開IDEA(發(fā)現(xiàn)IDEA有個問題,有的時候自動import包好用,有的時候不好用,坑?。?,然后選擇左上角的File->Open,找到你剛剛解壓的項目文件里的pom.xml點(diǎn)擊ok如下圖
目錄結(jié)構(gòu)
增加修改目錄結(jié)構(gòu)為下圖
開始編寫
這里我們就編寫一個人員信息的增刪改查
配置數(shù)據(jù)庫數(shù)據(jù)庫創(chuàng)建
打開mysql數(shù)據(jù)庫創(chuàng)建一個叫test的數(shù)據(jù)庫之后創(chuàng)建person表,這里使用的是Navicat百度有破解版,會命令用命令行也行,如下圖,記得設(shè)置主鍵自增,然后隨便加幾個數(shù)據(jù)以便之后查詢。
application.yml
路徑:/resources/application.yml
server: port: 8080 spring: datasource: name: url: jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&serverTimezone=UTC username: root password: root mybatis: mapper-locations: classpath:mapper/*.xml
Person類
路徑/model/Person.java
package com.ljsh.test.model; public class Person { /* {id} 自增主鍵 {name} 人員姓名 {mobile} 人員電話 */ private int id; private String name; private String mobile; // 右鍵 Generate -> Setter and Getter -> Shift全選 -> ok 生成如下代碼 public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } // 右鍵 Generate -> toString() -> 全選 -> ok 生成如下代碼 @Override public String toString() { return "Person{" + "id=" + id + ", name='" + name + '\'' + ", mobile='" + mobile + '\'' + '}'; } }
PersonDao
路徑:/dao/PersonDao.java
package com.ljsh.test.dao; import com.ljsh.test.model.Person; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface PersonDao { /* 查所有 return List<Person> */ List<Person> getAll(); /* 根據(jù)ID查詢 {id} 要查詢?nèi)藛T的 id */ Person getPersonByID(int id); /* 刪除 {id} 要刪除人員的 id */ void delete(int id); /* 更新 {p} 要更新的Person實例 */ void update(Person p); /* 增加 {p} 要新增的Person實例 */ void newp(Person p); }
PersonDao.xml
路徑:/mapper/PersonDao.xml
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > <!-- 這里填寫對應(yīng)的Dao文件所在的路徑 --> <mapper namespace="com.ljsh.test.dao.PersonDao" > <!-- 填寫數(shù)據(jù)庫里實例Person對應(yīng)的表的表名 --> <!-- 這里是作為一個變量使用 --> <sql id="table">person</sql> <!-- id屬性填寫Dao文件里的函數(shù)名稱 xxType是參數(shù)或是結(jié)果的類型根據(jù)情況填寫 --> <!-- 查詢所有 --> <select id="getAll" resultType="com.ljsh.test.model.Person"> SELECT * FROM <include refid="table" /> </select> <!-- 根據(jù)id查詢 --> <select id="getPersonById" resultType="com.ljsh.test.model.Person"> SELECT * FROM <include refid="table"/> WHERE id = #{id} </select> <!-- 增 --> <insert id="newp" parameterType="com.ljsh.test.model.Person"> INSERT INTO <include refid="table"/> (name,phone) VALUES (#{name},#{phone}) </insert> <!-- 改 --> <update id="update" parameterType="com.ljsh.test.model.Person"> UPDATE <include refid="table"/> SET <!--<if test="name != null">name = #{name}</if>--> name = #{name},phone = #{phone},status = #{status} WHERE id = #{id} </update> <!-- 刪 --> <delete id="delete" parameterType="com.ljsh.test.model.Person"> DELETE FROM <include refid="table"/> WHERE id = #{id} </delete> </mapper>
PersonService
路徑:/service/PersonService.java
package com.ljsh.test.service; import com.ljsh.test.dao.PersonDao; import com.ljsh.test.model.Person; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class PersonService { @Autowired PersonDao personDao; /* Service層介于controller和dao之間作為服務(wù)層進(jìn)行一些邏輯處理, 這里邏輯太簡單所以知識單純調(diào)用dao所以不做注釋 */ public List<Person> getAll(){ return personDao.getAll(); } public Person getPersonByID(int id){ return personDao.getPersonByID(id); } public void delete(int id){ personDao.delete(id); } public void update(Person p){ personDao.update(p); } public void newp(Person p){ personDao.newp(p); } }
PersonController
路徑:/controller/PersonController.java
package com.ljsh.test.controller; import com.ljsh.test.model.Person; import com.ljsh.test.service.PersonService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import java.util.List; @Controller public class PersonController { @Autowired PersonService personService; // 設(shè)置訪問路由值為路徑 @RequestMapping("/") public ModelAndView index(){ // 顧名思義 實體和數(shù)據(jù) 同時返回頁面模板和數(shù)據(jù) ModelAndView mav = new ModelAndView("index"); List<Person> list = personService.getAll(); mav.addObject("list",list); return mav; } }
前端頁面
路徑:/templates/index.html
<!DOCTYPE html> <html lang="en"> <!-- --> <!-- 使用thymeleaf需引入 --> <html xmlns:th="http://www.thymeleaf.org"> <head> </head> <body> <div id="tableP"> <table> <caption>人員信息</caption> <tr> <th>Name</th> <th>Phone</th> </tr> <!-- 通過th命令使用一些操作 --> <!-- 通過${} 使用變量 --> <tr th:each="item: ${list}"> <td th:text="${{item.name}}">還沒有任何人員信息哦</td> <td th:text="${{item.mobile}}">你是不是想獨(dú)吞獎品</td> </tr> </table> </div> </div> </body> </html>
右上角運(yùn)行
要是沒有這個可以右側(cè)選擇TestApplication右鍵Run,結(jié)果圖如下
未完待續(xù)
熄燈睡覺了,寫的有點(diǎn)慢,刪改查還沒來及寫,如果需求留言,我會繼續(xù)更新。
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對創(chuàng)新互聯(lián)的支持。
名稱欄目:SpringBoot+Mybatis增刪改查實戰(zhàn)記錄
轉(zhuǎn)載源于:http://muchs.cn/article40/gesheo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開發(fā)、做網(wǎng)站、標(biāo)簽優(yōu)化、網(wǎng)站收錄、網(wǎng)站策劃、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)