MongoDB在SpringBoot中的整合和简单使用 一、引入依赖1234567891011<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId></dependency> #yml 2023-03-30 SpringBoot #MongoDB
Redis在SpringBoot中的简单使用 一、导入依赖12345<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>2.7.8</version>& 2023-03-27 数据库 #Redis
基于vant3组件的文件上传 基于vant3组件的文件上传 前台代码 1234567891011121314151617181920212223242526272829303132333435363738<van-form @submit="onSubmit" class="form1"> <van-cell-group inset> < 2023-03-20 前端 #vue #vant3
点击实现文件的下载 点击实现文件的下载前臺代碼 前端頁面資源展示1234567891011121314<div> <div class="pictures" v-if="toutiao.type == 1"> <img :src="picIp + toutiao.pictures"> </d 2023-03-18 其他
SpringBoot_school 建立基本的SpringBoot项目 创建一个maven项目,在pom文件继承依赖 12345<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> 2023-03-13 SpringBoot #SpringBoot德鲁伊连接池的配置 #SpringBoot自定义配置 #SpringBoot全局跨域 #Mybatis-plus自动生成代码 #Mybatis-plus分页配置
Hello World Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick 2023-03-11
模拟堆 维护一个集合,初始时集合为空,支持如下几种操作: I x,插入一个数 xx; PM,输出当前集合中的最小值; DM,删除当前集合中的最小值(数据保证此时的最小值唯一); D k,删除第 kk 个插入的数; C k x,修改第 kk 个插入的数,将其变为 xx; 现在要进行 NN 次操作,对于所有第 22 个操作,输出当前集合的最小值。 输入格式第一行包含整数 NN。 接下来 NN 行,每行包含 2021-08-03 数据结构 #堆