spring boot中可以在配置文件中直接进行数据库配置,
spring.datasource.urname= rootspring.datasource.password= 123456spring.datasource.url=jdbc:mysql://localhost:3306/mybatis?uunicode=true&characterencoding=utf-8spring.datasource.driver感恩老师最暖心句子-class-name=com.mysql.cj.jdbc.driver
springboot可以直接生成数据库对象
默认数据源为hikari
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;@springboottestclass 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.clo(); }}
springboot中有很多template已经写好可以直接拿来用
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;@restcontrollerpublic class jdbccontroller { @autowired jdbctemplate jdbctemplate; //查询数据库所有信息 @getmapping("/urlist") public list<map<string,objec杂文精选t>> urlist(){ string sql = "lect * from ur"; list<map<string, object>> maplist = jdbctemplate.queryforlist(sql); return maplist; } @getmapping("/addur") public string addur(){ string sql = "inrt into mybatis.ur(id,name,pwd) values (4,'hhh','451651')"; jdbctemplate.update(sql); return "update-ok"; } @getmapping("/deleteur/{id}") public string deleteur(@pathvariable("id") int id){ string sql = "delete from mybatis.ur where id = ?"; jdbctemplate.update(sql,id); return "delete-ok"; }}
到此这篇关于springboot封装jdbc使用的文章就介绍到这了,更多相关springboot封装jdbc内容请搜索www.8875寝室长的职责51.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-04 08:26:10,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/7e4767c5cb506488cfcfea395a0c3c1d.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:详解SpringBoot封装使用JDBC.doc
本文 PDF 下载地址:详解SpringBoot封装使用JDBC.pdf
留言与评论(共有 0 条评论) |