Spring | Spring的“数据库开发“ (Srping JDBC)

目录:

    • Spring JDBC
      • 1.Spring JDBC的核心类 ( JdbcTemplate类 )
      • 2.Srping JDBC 的配置
      • 3.JdbcTemplate类的“常用方法”
        • execute( ):直接执行“sql语句”,没有返回值
        • update( ) :“增删改”,返回 “影响的行数”
        • query( ) : “查询”,返回 “T类型 / List类型” 的结果

在这里插入图片描述

作者简介 :一只大皮卡丘,计算机专业学生,正在努力学习、努力敲代码中! 让我们一起继续努力学习!

该文章参考学习教材为:
《Java EE企业级应用开发教程 (Spring + Spring MVC +MyBatis)》 黑马程序员 / 编著
文章以课本知识点 + 代码为主线,结合自己看书学习过程中的理解和感悟 ,最终成就了该文章

文章用于本人学习使用 , 同时希望能帮助大家。
欢迎大家点赞👍 收藏⭐ 关注💖哦!!!

(侵权教材方可联系我,进行删除,如果雷同,纯属巧合)


Spring JDBC

SpringJDBC模块 负责数据库资源管理错误处理,大大简化了开发人员对数据库的操作,使得开发人员可以从烦琐的数据库操作中解脱出来,从而将更多的精力投入到编写业务逻辑中

1.Spring JDBC的核心类 ( JdbcTemplate类 )

  • 针对数据库的操作,Spring 框架 (Spring JDBC )提供了 JdbcTemplate类,该类是Spring框架数据抽象层基础,其他更高层次的抽象类却是构建于JdbcTemplate类之上。

  • JdbcTemplate 类是Spring JDBC核心类

  • JdbcTemplate继承 / 实现 关系为 :
    在这里插入图片描述

    抽象类赋予JdbcTemplate属性接口赋予JdbcTemplate操作的方法,具体内容如下 :
    一、
    JdbcTemplate 继承 抽象类 JdbcAccessorJdbcAccessor是 JdbcTemplate的直接父类 (JdbcAccessor) 为子类 (JdbcTemplate) 提供了一些访问数据库时使用公共属性

    DataSource : 其主要功能是获取数据库连接具体实现时还可以引入对数据库连接
    冲池分布式事务的支持,它可以作为访问数据库资源的标准接口。

    SQLExceptionTranslator
    org.springframework.jdbc support.SQLExceptionTranslator接口负责对 SQLException 进行转译工作。通过必要的设置或者 获取SQLExceptionTranslator中的方法,可以使 JdbcTemplate 在需要处理SQLException时,委托SQLExceptionTranslator实现类完成相关的转译工作

    二、
    JdbcTemplate 实现了 JdbcOperations 接口。JdbcOperations接口定义了在JdbcTemplate类中可以使用的操作集合,包括 添加修改查询删除 等操作。

2.Srping JDBC 的配置

  • Spring JDBC模块主要由 4个包组成,分别是core (核心包)dataSource (数据源包)object (对象包)support (支持包)

  • 想实现 Spring JDBC功能,要进行Spring JDBC配置 :
    配置 core (核心包) 中的 JdbcTemplate 类
    配置 dataSource (数据源包) 中的 DriverManagerDataSource类
    (在 applicationContext.xml 中进行配置)

  • 包名说明
    core包
    (要配置JdbcTemplate 类)
    包含了JDBC核心功能,包括 JdbcTemplate 类SimpleJdbcInsert类SimpleJdbcCall类 以及 NamedParameterJdbcTemplate类
    ② 定义JdbcTemplate时,要将已经配置好的dataSource注入到JdbcTemplate中。
    dataSource包
    (要配置dataSource数据源 : DriverManagerDataSource类 )
    访问数据源实用工具类,它有多种数据源实现,可以在Java EE容器外部测试JDBC代码。
    ② 在配置文件中配置dataSource其的类为 :org.springframework.jdbc.datasource.DriverManagerDataSource
    ③ 配置 dataSource4个属性分别为: 数据库驱动url用户名密码
    ps : 配置dataSource的例子在下面。
    object包面向对象的方式访问数据库,它允许执行查询并将返回结果作为业务对象,可以在数据表的列业务对象的属性之间映射查询结果
    support包包含了coreobject包支持类,例如,提供异常转换功能的SQLException类
  • dataSource4个属性
    ( 在以下的dataSource4个属性applicationContext.xml中完成配置 )

    属性名含义
    driverClassName使用驱动名词,对应驱动JAR包中工的Driver类
    如 :<property name=“driverClassNamevalue=“com.mysql.jdbc.Driver”/>
    url数据源所在地址
    如 :<property name=“urlvalue=“jdbc:mysql://localhost:3306/spring”/>
    username访问数据库的用户名
    如: <property name=“username” value=“root”/>
    password访问数据库的密码
    如 : <property name=“password” value=“root”/>
  • Srping JDBC配置的 “配置模板” / 例子
    Spring JDBC要添 JAR包 : (配置JAR包)
    Spring的核心JAR包

    Spring JDBC开发所需JARmysql数据库的驱动JAR包 (mysql-connector-java.jar) 、Srpring的JDBC的JAR包 (spring-jdbc.jar) 、Spring事务处理的JAR包(spring-tx.jar)。

    在这里插入图片描述

    获取spring框架基本核心jar包
    获取Spring JDBC 开发需要的jar包
    jar包 / maven( 依赖 ) 下载( 可自行按需下载JAR )
    ps :
    如有报错版本问题,可看情况判断是否需要更换JAR版本


    applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><!--
①该配置文件中可添加、配置管理Bean
②可配置Spring AOP (AspectJ等)的配置信息
③当然也可以配置Spring JDBC等的配置信息
--><!-- 1.配置数据源 (与Spring JDBC中的dataSource模块有关)   -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><!-- 数据库驱动   --><property name="driverClassName" value="com.mysql.jdbc.Driver"/><!-- url   --><property name="url" value="jdbc:mysql://localhost:3306/spring"/><!-- 用户名   --><property name="username" value="root"/><!-- 密码   --><property name="password" value="root"/>
</bean><!--  2.配置JDBC模板 / 配置JdbcTemplate (与Spring JDBC中的core模块有关)  -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"><!--  默认必须使用数据源 --><property name="dataSource" ref="dataSource"/>
</bean></beans>

在上述applicationContext.xml中,定义了 3个Bean,分别是 dataSourejdbcTemplate需要注入类Bean
其中 dataSource 对应 的org.springframework.jdbc.datasource. DriverManagerDataSource 类用于对数据源进行配置
jdbcTemplate 对应的org.springframework.jdbc.core. JdbcTemplate 类用于定义了JdbcTemplate的相关配置。

dataSource4个属性,需要根据数据库类型或者机器配置的不同设置相应的属性值。例如果数据库类型不同需要更改驱动名称;如果数据库不在本地,则需要将地址中的 localhost 替换成相应的主机IP;如果修改过MySQL数据库的端口号(默认为3306),则需要加上修改后的端口号,如果没修改,则端口号可以省略。

3.JdbcTemplate类的“常用方法”

JdbcTemplate类中,提供了大量的更新查询数据库方法,我们就是使用这些方法操作数据库的。

execute( ):直接执行“sql语句”,没有返回值
  • execute (String sql) 方法 : 执行指定的 SQL 语句。该方法是==没有返回值==的。

    例子如 :

    第一步、建好项目、导入所需依赖、打开doc窗口,指定确定存在数据库 (如: use spring)
    在这里插入图片描述

    在这里插入图片描述

    ​ 此时spring这个 “数据库” 中并没有 “数据表”。

    第二步、配置applicationContext.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><!--该配置文件中可以配置Spring JDBC等的配置信息--><!-- 1.配置数据源 (与Spring JDBC中的dataSource模块有关)   --><bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><!-- 数据库驱动   --><property name="driverClassName" value="com.mysql.jdbc.Driver"/><!-- url   --><property name="url" value="jdbc:mysql://localhost:3306/spring"/><!-- 用户名   --><property name="username" value="root"/><!-- 密码   --><property name="password" value="root"/></bean><!--  2.配置JDBC模板 / 配置JdbcTemplate (与Spring JDBC中的core模块有关)  --><bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"><!--  默认必须使用数据源 --><property name="dataSource" ref="dataSource"/></bean></beans>
    

    第三步、创建 JdbcTemplateTest测试类测试 JdbcTemplate类中的 execute( )方法的使用情况 :

    package com.myh.jdbc;import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    import org.springframework.jdbc.core.JdbcTemplate;public class JdbcTemplateTest { //在该测试类中使用 execute()方法建数据库中的"表"public static void main(String[] args) {//加载配置文件ApplicationContext applicationContext =new ClassPathXmlApplicationContext("com/myh/jdbc/applicationContext.xml");//从IOC容器中获得 JdbcTemplate 实例JdbcTemplate jdbcTemplate = (JdbcTemplate) applicationContext.getBean("jdbcTemplate");String sql = "create table student(" +"id int primary key auto_increment," +"username varchar(50)," +"hobby varchar(50))";/*execute()方法作用 : 执行sql语句*/jdbcTemplate.execute(sql);System.out.println("创建student表成功!");}
    }
    

    运行效果图
    doc窗口,输入 “show tables”命令,判断execute( )方法是否成功执行

在这里插入图片描述

控制台输入 如下 :

在这里插入图片描述

由两个效果图可知,程序 使用execute( String sql )方法执行的sql语句成功创建student表

update( ) :“增删改”,返回 “影响的行数”
  • update()方法 : 可以完成 插入更新删除数据 的操作,有返回值 : 返回影响的行数
    JdbcTemplate类中,提供了一系列的
    update( )方法,其常用方法如下所示 :
方法说明
int update( String sql )该方法是最简单update 方法重载形式,它直接执行传入的SQL语句,并 返回受影响行数
int update( PreparedStatementCreator psc )该方法执行PreparedStatementCreator返回的语句,然后返回受影响的行数
int update( String sql,PreparedStatementSetter )该方法通过PreparedStatementSetter设置SQL语句中参数,并返回受影响的行数
int update( String sql,Object…args )
★★★★★ ( 常用 )
该方法 使用Object…设置SQL语句中参数要求参数不能为NULL,并 返回受影响的行数
将设置的参数填充到占位符?中

update( ) 方法例子 :进行“增删改”操作。
Student.java

package com.myh.jdbc;public class Student {private Integer id; //学生idprivate String username; //用户名private String hobby;/*getter/setter方法*/public Integer getId() {return id;}public void setId(Integer id) {this.id = id;}public String getUsername() {return username;}public void setUsername(String username) {this.username = username;}public String getHobby() {return hobby;}public void setHobby(String hobby) {this.hobby = hobby;}//重写toString()方法@Overridepublic String toString() {return "Student{" +"id=" + id +", username='" + username + '\'' +", hobby='" + hobby + '\'' +'}';}
}

StudentDao.java (接口) :

package com.myh.jdbc;public interface StudentDao {  //在该接口中定义“添加”、“更新”、“删除”的Student的方法//添加public int addStudent(Student student);//更新public int updateStudent(Student student);//删除public int deleteStudent(int id);
}

StudentDaoImpl.java实现类

package com.myh.jdbc;import org.springframework.jdbc.core.JdbcTemplate;
public class StudentDaoImpl implements StudentDao{ //该类为StudentDao接口的"实现类"//声明JdbcTemplate属性private JdbcTemplate jdbcTemplate;//为JdbcTemplate属性 添加setter方法public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {this.jdbcTemplate = jdbcTemplate;}/**添加*/@Overridepublic int addStudent(Student student) {/*sql语句,此处的占位符?通过下面的Object参数进行填充*/String sql = "insert into student(username,hobby) values(?,?)";//定义数组来存储sql语句中的参数 (将Student类中存储的数组放进数组中)Object[] obj = new Object[]{student.getUsername(),student.getHobby()};//通过 update(String sql)执行操作,返回值为: sql语句影响的行数int num = this.jdbcTemplate.update(sql,obj); //返回sql语句影响的行数return num;}/*** 更新*/@Overridepublic int updateStudent(Student student) {String sql = "update student set username = ?,hobby = ? where id = ?";//定义要用在update()方法中的参数Object[] params = new Object[]{student.getUsername(), student.getHobby(), student.getId()};int num = this.jdbcTemplate.update(sql, params);return num;}/*** 删除*/@Overridepublic int deleteStudent(int id) {String sql = "delete from student where id = ?";//执行删除操作,返回影响的行数int num = this.jdbcTemplate.update(sql, id);return num;}
}

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><!--该配置文件中可以配置Spring JDBC等的配置信息--><!-- 1.配置数据源 (与Spring JDBC中的dataSource模块有关)   --><bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><!-- 数据库驱动   --><property name="driverClassName" value="com.mysql.jdbc.Driver"/><!-- url   --><property name="url" value="jdbc:mysql://localhost:3306/spring"/><!-- 用户名   --><property name="username" value="root"/><!-- 密码   --><property name="password" value="root"/></bean><!--  2.配置JDBC模板 / 配置JdbcTemplate (与Spring JDBC中的core模块有关)  --><bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"><!--  默认必须使用数据源 --><property name="dataSource" ref="dataSource"/></bean><!--定义一个id 为"studentDao" 的Bean,该Bean用于将"jdbcTemplate"类注入到"studentDao"这个实例中,因为实例中要用到该对象--><bean id="studentDao" class="com.myh.jdbc.StudentDaoImpl"><property name="jdbcTemplate" ref="jdbcTemplate"/></bean></beans>

JdbcTemplateTest.java (测试类)

package com.myh.jdbc;import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;public class JdbcTemplateTest { //在该测试类中使用 execute()方法建数据库中的"表"/*** 进行Junit测试*/@Testpublic void JunitTest() {//加载配置文件ApplicationContext applicationContext =new ClassPathXmlApplicationContext("com/myh/jdbc/applicationContext.xml");//从IOC容器中获得 JdbcTemplate 实例JdbcTemplate jdbcTemplate = (JdbcTemplate) applicationContext.getBean("jdbcTemplate");/*execute()方法作用 : 执行sql语句*/jdbcTemplate.execute("select * from tb_user");System.out.println("数据查询成功!");}/*** 添加*/@Test //junit4单元测试public void addStudentTest() {//加载配置文件ApplicationContext applicationContext =new ClassPathXmlApplicationContext("com/myh/jdbc/applicationContext.xml");//获取StudentDao实例StudentDao studentDao = (StudentDao) applicationContext.getBean("studentDao");//创建Student对象,往其中添加数据Student student = new Student();student.setUsername("张三");student.setHobby("打篮球");//添加int num = studentDao.addStudent(student);if (num > 0) {System.out.println("成功插入了" + num + "条数据!");} else {System.out.println("插入操作执行失败!");}}/*** 更新(修改)*/@Testpublic void updateStudentTest() {//加载配置文件ApplicationContext applicationContext =new ClassPathXmlApplicationContext("com/myh/jdbc/applicationContext.xml");//获取StudentDao实例StudentDao studentDao = (StudentDao) applicationContext.getBean("studentDao");//创建Student对象,往其中添加数据Student student = new Student();student.setId(1);student.setUsername("小明");student.setHobby("踢足球");//更新(修改)int num = studentDao.updateStudent(student);if (num > 0) {System.out.println("成功修改了" + num + "条数据!");} else {System.out.println("修改操作执行失败!");}}/*** 删除*/@Testpublic void deleteStudentTest() {//加载配置文件ApplicationContext applicationContext =new ClassPathXmlApplicationContext("com/myh/jdbc/applicationContext.xml");//获取StudentDao实例StudentDao studentDao = (StudentDao) applicationContext.getBean("studentDao");//删除int num = studentDao.deleteStudent(1);if (num > 0) {System.out.println("成功删除了" + num + "条数据!");} else {System.out.println("删除操作执行失败!");}}
}
query( ) : “查询”,返回 “T类型 / List类型” 的结果
  • query( ) : 数据库中的数据进行查询操作
    JdbcTemplate类中还提供了大量的query( )方法来处理各种对数据库表查询操作

    方法说明
    List<T> query ( String sql , RowMapper rowMapper)
    ★★★★★ ( 常用 )
    执行String类型参数提供SQL语句,并通过 RowMapper 返回一个List类型结果
    :
    可用于查询所有数据。(★★★)
    List<T> query ( String sql , PearesSatementSetter pss , RowMapper rowMapper)根据String 类型参数提供SQL语句创建 PreparedStatement对象,通过RowMapper结果 / 结果集返回到List中。
    List<T> query ( String sql , Objecr[ ] args , RowMapper rowMapper )使用Obiect[ ]的值来设置SQL语句中的参数值,采用 RowMapper回调方法可以直接返回List类型数值
    T queryForObject ( String sql , RowMapper rowMapper ,
    Object… args)
    ★★★★★ ( 常用 )
    args参数绑定SQL语句中,并通过 RowMapper 返回一个Object类型单行记录
    :
    用于“根据指定id查询数据。(★★★)
    List<T> queryForList ( String sql , Object[ ] args , class<T> )该方法可以 返回多行数据结果, 但必须是返回列表elementType参数返回的是 List元素类型
  • query( ) 方法例子 :返回 “T类型 / List类型” 的结果 :

    Student.java

    package com.myh.jdbc;public class Student {private Integer id; //学生idprivate String username; //用户名private String hobby;/*getter/setter方法*/public Integer getId() {return id;}public void setId(Integer id) {this.id = id;}public String getUsername() {return username;}public void setUsername(String username) {this.username = username;}public String getHobby() {return hobby;}public void setHobby(String hobby) {this.hobby = hobby;}//重写toString()方法@Overridepublic String toString() {return "Student{" +"id=" + id +", username='" + username + '\'' +", hobby='" + hobby + '\'' +'}';}
    }
    

    StudentDao.java (接口)

    package com.myh.jdbc;import java.util.List;public interface StudentDao { //根据id查询public Student findStudentById(int id);//查询所有public List<Student> findAllStudent();
    }
    

    StudentDaoImpl.java (实现类)

    package com.myh.jdbc;import org.springframework.jdbc.core.BeanPropertyRowMapper;
    import org.springframework.jdbc.core.JdbcTemplate;
    import org.springframework.jdbc.core.RowMapper;import java.util.List;public class StudentDaoImpl implements StudentDao{ //该类为StudentDao接口的"实现类"/***  根据id查询 :*  用queryForObject ( String sql , RowMapper rowMapper , Object...args) 这个方法来进行“根据id”查询数据*  该方法 : 将args参数绑定到sql语句中,且通过 RowMapper 返回一个Object类型的“单行记录”。*/@Overridepublic Student findStudentById(int id) {//sql语句String sql = "select * from student where id = ?";//创建一个BeanPropertyRowMapper对象RowMapper<Student> rowMapper = new BeanPropertyRowMapper<Student>(Student.class);//调用query()方法查询数据库中的数据Student student = this.jdbcTemplate.queryForObject(sql, rowMapper, id); //返回值为一个return student;
    }/*** 查询所有*/@Overridepublic List<Student> findAllStudent() {//sql语句String sql = "select * from student";//创建 BeanPropertyRowMapper 对象RowMapper<Student> rowMapper = new BeanPropertyRowMapper<Student>(Student.class);List<Student> students = this.jdbcTemplate.query(sql, rowMapper); //返回值为list集合,该集合中存储一个或多个Student类数据return students;}
    }
    

    applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><!--该配置文件中可以配置Spring JDBC等的配置信息--><!-- 1.配置数据源 (与Spring JDBC中的dataSource模块有关)   --><bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><!-- 数据库驱动   --><property name="driverClassName" value="com.mysql.jdbc.Driver"/><!-- url   --><property name="url" value="jdbc:mysql://localhost:3306/spring"/><!-- 用户名   --><property name="username" value="root"/><!-- 密码   --><property name="password" value="root"/></bean><!--  2.配置JDBC模板 / 配置JdbcTemplate (与Spring JDBC中的core模块有关)  --><bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"><!--  默认必须使用数据源 --><property name="dataSource" ref="dataSource"/></bean><!--定义一个id 为"studentDao" 的Bean,该Bean用于将"jdbcTemplate"类注入到"studentDao"这个实例中,因为实例中要用到该对象--><bean id="studentDao" class="com.myh.jdbc.StudentDaoImpl"><property name="jdbcTemplate" ref="jdbcTemplate"/></bean></beans>

JdbcTemplateTest.java (测试类)

package com.myh.jdbc;import org.junit.Test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import org.springframework.jdbc.core.JdbcTemplate;
import java.util.Iterator;
import java.util.List;public class JdbcTemplateTest { /*** 根据id来查询数据*/@Testpublic void findStudentByIdTest() {//加载配置文件ApplicationContext applicationContext =new ClassPathXmlApplicationContext("com/myh/jdbc/applicationContext.xml");//获取StudentDao实例StudentDao studentDao = (StudentDao) applicationContext.getBean("studentDao");//执行 findStudentById()方法Student student = studentDao.findStudentById(1);System.out.println(student);}/*** 查询所有数据*/@Testpublic void findAllStudentTest() {//加载配置文件ApplicationContext applicationContext =new ClassPathXmlApplicationContext("com/myh/jdbc/applicationContext.xml");//获取StudentDao实例StudentDao studentDao = (StudentDao) applicationContext.getBean("studentDao");//执行 findAllStudent()方法List<Student> allStudent = studentDao.findAllStudent();
//使用“集合”的“迭代器”遍历集合中数据Iterator<Student> iterator = allStudent.iterator();
while (iterator.hasNext()) {Student next = iterator.next();System.out.println(next);}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/657307.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

双链表的基本知识以及增删查改的实现

满怀热忱&#xff0c;前往梦的彼岸 前言 之前我们对单链表进行了非常细致的剖析&#xff0c;现在我们所面临的则是与之相对应的双链表&#xff0c;我会先告诉诸位它的基本知识&#xff0c;再接着把它的增删查改讲一下&#xff0c;ok&#xff0c;正文开始。 一.链表的种类 我…

其他发现:开源数据可视化分析工具DataEase介绍文档

一、 简介 DataEase 是开源的数据可视化分析工具&#xff0c;帮助用户快速分析数据并洞察业务趋势&#xff0c;从而实现业务的改进与优化。DataEase 支持丰富的数据源连接&#xff0c;能够通过拖拉拽方式快速制作图表&#xff0c;并可以方便地与他人分享。 二、 优势 1、 开…

STM32学习笔记二——STM32时钟源时钟树

目录 STM32芯片内部系统架构详细讲解&#xff1a; 1.芯片内部混乱电信号解决方案&#xff1a; 2.时钟树&#xff1a; 1.内部RC振荡器与外部晶振的选择 2. STM32 时钟源 3.STM32中几个与时钟相关的概念 4.时钟输出的使能及其流程 5.时钟设置的基本流程 时钟源——单片机…

Java多线程--同步机制解决线程安全问题方式二:同步方法

文章目录 一、同步方法&#xff08;1&#xff09;同步方法--案例11、案例12、案例1之同步监视器 &#xff08;2&#xff09;同步方法--案例21、案例2之同步监视器的问题2、案例2的补充说明 二、代码及重要说明&#xff08;1&#xff09;代码&#xff08;2&#xff09;重要说明 …

基于yolov2深度学习网络的视频手部检测算法matlab仿真

目录 1.算法运行效果图预览 2.算法运行软件版本 3.部分核心程序 4.算法理论概述 5.算法完整程序工程 1.算法运行效果图预览 输入mp4格式的视频文件进行测试&#xff0c;视频格式为1080p30. 2.算法运行软件版本 matlab2022a 3.部分核心程序 ..........................…

Linux第40步_移植ST公司的uboot

一、查看ST公司的uboot源码包 ST公司的uboot源码包在虚拟机中的路径&#xff1a; “/home/zgq/linux/atk-mp1/stm32mp1-openstlinux-5.4-dunfell-mp1-20-06-24/sources/arm-ostl-linux-gnueabi/u-boot-stm32mp-2020.01-r0”&#xff1b; “u-boot-stm32mp-2020.01-r0”就是S…

Github 上传项目(个人令牌token)

1.点击 github头像 &#xff1a; setting -> Developer Settings -> Personal access tokens 2.在要上传的文件夹下运行以下命令&#xff1a; git init git commit -m "first commit" git branch -M main 利用以下命令模…

Vue中嵌入原生HTML页面

Vue中嵌入html页面并相互通信 需求&#xff1a;b2b支付需要从后获取到数据放到form表单提交跳转&#xff0c;如下&#xff1a; 但是vue目前暂时没找到有类似功能相关文档&#xff0c;所以我采用iframe嵌套的方式 1. Vue中嵌入Html <iframe src"/static/gateway.htm…

多线程c++

目录 1.join和detach区别 2.lock_guard和unique_lock 3.原子操作 4.条件变量condition_variable 5.future 和 promise 1.join和detach区别 ①不使用join和detach #include <iostream> #include <thread> #include <windows.h>using namespace std;v…

hcip---ospf综合实验

一&#xff1a;实验要求 1、R4为ISP&#xff0c;其上只能配置IP地址&#xff0c;R4与其所有直连设备间均使用公有IP 2、R3-R5/6/7为MGRE环境&#xff0c;R3为中心站点 3、整个OSPF环境IP基于R4的环回 4、所有设备均可访问R4的环回 5、减少LSA的更新量&#xff0c;加快收敛…

医院如何筛选安全合规的内外网文件交换系统?

医院内外网文件交换系统是专为医疗机构设计的&#xff0c;用于在内部网络&#xff08;内网&#xff09;和外部网络&#xff08;外网&#xff09;之间安全、高效地传输敏感医疗数据和文件的解决方案。这种系统对于保护患者隐私、遵守医疗数据保护法规以及确保医疗服务的连续性和…

初探分布式链路追踪

本篇文章&#xff0c;主要介绍应用如何正确使用日志系统&#xff0c;帮助用户从依赖、输出、清理、问题排查、报警等各方面全面掌握。 可观测性 可观察性不单是一套理论框架&#xff0c;而且并不强制具体的技术规格。其核心在于鼓励团队内化可观察性的理念&#xff0c;并确保由…

Django4.2(DRF)+Vue3 读写分离项目部署上线

文章目录 1 前端2 后端2.1 修改 settings.py 文件关于静态文件2.2 关于用户上传的文件图片 3 Nginx4 镜像制作4.1 nginx4.3 Django镜像4.3.1 构建 5 docker-compose 文件内容 1 前端 进入前端项目的根目录&#xff0c;运行如下命令进行构建 npm run build构建完成后&#xff…

K8S之Pod的介绍和使用

Pod的理论和实操 pod理论说明Pod介绍Pod运行与管理Pod管理多个容器Pod网络Pod存储 Pod工作方式自主式Pod控制器管理的Pod&#xff08;常用&#xff09; 创建pod的流程 pod实操通过资源清单文件创建自主式pod通过kubectl run创建Pod&#xff08;不常用&#xff09; pod理论说明 …

指针的深入了解6

1.回调函数 回调函数就是一个通过函数指针调用的函数。 如果你把函数的指针&#xff08;地址&#xff09;作为参数传递给另一个函数&#xff0c;当这个指针被用来调用其所指向的函数 时&#xff0c;被调用的函数就是回调函数。回调函数不是由该函数的实现方直接调用&#xff0…

【LVGL源码移植环境搭建】

LVGL源码移植&环境搭建 ■ LVGL源码移植■ 下载LVGL源码■ 修改LVGL文件夹■■■■ 视频链接 Ubuntu模拟器环境建置 ■ LVGL源码移植 ■ 下载LVGL源码 LVGL源码 我们以选择v8.2.0为例&#xff0c;选择8.2.0下载 ■ 修改LVGL文件夹 1.我们只需要关注这5个文件即可&…

《Docker技术革命:从虚拟机到容器化,全面解析Docker的原理与应用-上篇》

文章目录 Docker为什么会出现总结 Docker的思想Docker历史总结 Docker能干嘛虚拟机技术虚拟机技术的缺点 容器化技术Docker和虚拟机技术的区别 Docker概念Docker的基本组成镜像&#xff08;image)容器&#xff08;container&#xff09;仓科&#xff08;repository&#xff09;…

GitHub工作流的使用笔记

文章目录 前言1. 怎么用2. 怎么写前端案例1&#xff1a;自动打包到新分支前端案例2&#xff1a;自动打包推送到gitee的build分支案例3&#xff1a;暂时略 前言 有些东西真的就是要不断的试错不断地试错才能摸索到一点点&#xff0c;就是摸索到凌晨两三点第二天要8点起床感觉要…

聊一聊GPT、文心、通义、混元

我使用同一个Prompt提示词“请以记叙文的文体来写”&#xff0c;分别发送给GPT-3.5&#xff08;调用API&#xff09;、文心、通义、混元&#xff0c;下面是它们各自生成的文本内容&#xff0c;大家一看便知了。 GPT-3.5&#xff1a; 在我个人使用GPT模型的过程中&#xff0c;我…

Facebook的创新征程:社交媒体的演进之路

在当今数字化时代&#xff0c;社交媒体已经成为人们生活中不可或缺的一部分&#xff0c;而Facebook作为社交媒体领域的巨头&#xff0c;一直在不断创新和演进。本文将深入探讨Facebook的创新征程&#xff0c;追溯其社交媒体的发展历程&#xff0c;探讨其对用户、社会和数字时代…