亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

SpringBoot如何封裝JDBC

發布時間:2021-12-27 16:57:23 來源:億速云 閱讀:244 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“SpringBoot如何封裝JDBC”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“SpringBoot如何封裝JDBC”這篇文章吧。

Spring Boot中可以在配置文件中直接進行數據庫配置,

SpringBoot如何封裝JDBC

spring.datasource.username= root
spring.datasource.password= 123456
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis?useUnicode=true&characterEncoding=utf-8
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

SpringBoot可以直接生成數據庫對象
默認數據源為Hikari

SpringBoot如何封裝JDBC

jdbc連接

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.SQLException;

@SpringBootTest
class DataSpringbootApplicationTests {

    @Autowired
    DataSource dataSource;
    @Test
    void contextLoads() throws SQLException {
        System.out.println("默認數據源");
        System.out.println(dataSource.getClass());
        System.out.println("獲得數據庫連接");
        Connection connection = dataSource.getConnection();
        System.out.println(connection);

        System.out.println("關閉數據源");
        connection.close();
    }
}

SpringBoot如何封裝JDBC

springboot中有很多template已經寫好可以直接拿來用

SpringBoot如何封裝JDBC

SpringBoot如何封裝JDBC

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.List;
import java.util.Map;
@RestController
public class JDBCController {
    @Autowired
    JdbcTemplate jdbcTemplate;
    //查詢數據庫所有信息
    @GetMapping("/userList")
    public List<Map<String,Object>> userList(){
        String sql = "select * from user";
        List<Map<String, Object>> mapList = jdbcTemplate.queryForList(sql);
        return  mapList;
    }
    @GetMapping("/addUser")
    public String addUser(){
        String sql = "insert into mybatis.user(id,name,pwd) values (4,'hhh','451651')";
        jdbcTemplate.update(sql);
        return "update-ok";
    }
    @GetMapping("/deleteUser/{id}")
    public String deleteUser(@PathVariable("id") int id){
        String sql = "delete from mybatis.user where id = ?";
        jdbcTemplate.update(sql,id);
        return "delete-ok";
    }
}

SpringBoot如何封裝JDBC

以上是“SpringBoot如何封裝JDBC”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

渭源县| 晋中市| 东台市| 华亭县| 五原县| 玛曲县| 公安县| 涡阳县| 岐山县| 宁陵县| 广西| 凌源市| 宽城| 乡宁县| 黑水县| 绥芬河市| 兴城市| 广安市| 祥云县| 惠州市| 乐东| 大名县| 平乡县| 七台河市| 嘉义县| 定兴县| 江华| 丰都县| 遂宁市| 沈丘县| 泰安市| 开化县| 麦盖提县| 琼结县| 弋阳县| 辽源市| 广元市| 达尔| 芦溪县| 华坪县| 灵石县|