- 資訊首頁(yè) > 開(kāi)發(fā)技術(shù) >
- 教你用springboot連接mysql并實(shí)現增刪改查
創(chuàng )建名為mybatis的數據庫:
create database mybatis;
創(chuàng )建名為user2的數據表:
use mybatis; create table user2( id integer not null primary key, name varchar(20) not null, pwd varchar(10) not null, perms varchar(100) null)
生成如下表結構:
(已經(jīng)插入了兩行數據的)
2.數據庫的連接
注意點(diǎn):url要設置serverTimezone
比如:jdbc:mysql://localhost:3306?serverTimezone=UTC
連接成功后可以在idea中簡(jiǎn)單測試一下:
3.結構:
4.JDBCController.java
package com.kuang.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; import java.util.Map; import java.util.List; import java.lang.*; import java.util.Scanner; @RestController public class JDBCController { @Autowired JdbcTemplate jdbcTemplate; //查詢(xún)數據庫的所有信息 //沒(méi)有實(shí)體類(lèi),數據庫里的東西,怎么獲??? Map //查 @GetMapping("/userList") public List<Map<String,Object> > userList(){ String sql="select * from mybatis.user2"; List<Map<String,Object>> list_maps=jdbcTemplate.queryForList(sql); return list_maps; } //增 @GetMapping("/addUser") public String addUser(){ String sql="insert into mybatis.user2(id,name,pwd,perms) values(3,'xiaoming','123456','NULL')"; jdbcTemplate.update(sql); return "add-ok"; } //改 @GetMapping("updateUser/{id}/{name}/{pwd}") public String updateUser(@PathVariable("id") int id,@PathVariable("name") String name,@PathVariable("pwd") String pwd){ String sql="update mybatis.user2 set name=?,pwd=? where id="+id; //封裝Object Object[] objects = new Object[2]; objects[0]=name; objects[1]=pwd; jdbcTemplate.update(sql,objects); return "update-ok"; } //刪 @GetMapping("/deleteUser/{id}") public String deleteUser(@PathVariable("id") int id){ String sql="delete from mybatis.user2 where id=?"; jdbcTemplate.update(sql,id); return "delete-ok"; } }
5.application.yml
spring: datasource: username: root password: liding url: jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8 driver-class-name: com.mysql.jdbc.Driver
6.Springboot04DataApplication.java
package com.kuang; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Springboot04DataApplication { public static void main(String[] args) { SpringApplication.run(Springboot04DataApplication.class, args); } }
7.pom.xml
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.5</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.kuang</groupId> <artifactId>springboot-04-data</artifactId> <version>0.0.1-SNAPSHOT</version> <name>springboot-04-data</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- JDBC--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <!-- MySQL--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.4.5</version> </plugin> </plugins> </build> </project>
8.pom.xml文件中注意事項
1)<plugin> </plugin>之間的語(yǔ)句爆紅
加上與parent中相同的version號即可;
2)建立項目時(shí)勾選以下模塊 spring web JDBC API mysql Driver
9.查詢(xún)user
啟動(dòng)項目
輸入:localhost:8080/userList
10.修改user
輸入:localhost:8080/updateUser/5/hahahaha/1455
(說(shuō)明:修改id為5的user,名字改為hahahaha,密碼改為1455)
修改后的數據表:
11.增加user
輸入:localhost:8080/addUser
(這里先寫(xiě)一個(gè)簡(jiǎn)單靜態(tài)的addUser吧,寫(xiě)了半天類(lèi)似與updateUser的一直報錯)
修改后的數據表:
12.刪除user
輸入:localhost:8080/deleteUser/3
(刪除id為3的user)
修改后的數據表:
到此這篇關(guān)于教你用springboot連接mysql并實(shí)現增刪改查的文章就介紹到這了,更多相關(guān)springboot連接mysql內容請搜索腳本之家以前的文章或繼續瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng )、來(lái)自互聯(lián)網(wǎng)轉載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權請聯(lián)系QQ:712375056 進(jìn)行舉報,并提供相關(guān)證據,一經(jīng)查實(shí),將立刻刪除涉嫌侵權內容。
Copyright ? 2009-2021 56dr.com. All Rights Reserved. 特網(wǎng)科技 特網(wǎng)云 版權所有 珠海市特網(wǎng)科技有限公司 粵ICP備16109289號
域名注冊服務(wù)機構:阿里云計算有限公司(萬(wàn)網(wǎng)) 域名服務(wù)機構:煙臺帝思普網(wǎng)絡(luò )科技有限公司(DNSPod) CDN服務(wù):阿里云計算有限公司 中國互聯(lián)網(wǎng)舉報中心 增值電信業(yè)務(wù)經(jīng)營(yíng)許可證B2
建議您使用Chrome、Firefox、Edge、IE10及以上版本和360等主流瀏覽器瀏覽本網(wǎng)站