本文分类:news发布日期:2024/11/30 12:52:05
相关文章
SpringBoot3 + uniapp 对接 阿里云0SS 实现上传图片视频到 0SS 以及 0SS 里删除图片视频的操作(最新)
SpringBoot3 uniapp 对接 阿里云0SS 实现上传图片视频到 0SS 以及 0SS 里删除图片视频的操作 最终效果图uniapp 的源码UpLoadFile.vuedeleteOssFile.jshttp.js SpringBoot3 的源码FileUploadController.javaAliOssUtil.java 最终效果图 uniapp 的源码
UpLoadFile.vue <tem…
建站知识
2024/11/10 16:40:22
LeetCode 1 in Python. Two Sum (两数之和)
两数之和算法思想很简单,即找到nums[i]和nums[j]target-(nums[i])返回[I, j ]即可。问题在于,简单的两层遍历循环时间复杂度为O(),而通过构建一个hash表就可将时间复杂度降至O(n)。本文给出两种方法的代码实现。
示例: 图1 两数之…
建站知识
2024/11/21 11:42:41
[dvwa] sql injection(Blind)
blind
0x01 low
1’ and length(version()) 6 #
syntax: substr(string , from<start from 1>, cut length)
1’ and substr(version(),1,1) ‘5’ # 1’ and substr(version(),2,1) ‘.’ # 1’ and substr(version(),3,1) ‘7’ # 1’ and substr(version(),4,…
建站知识
2024/11/2 8:18:06
Spring MVC 文件上传和下载
文章目录 Spring MVC 中文件上传利用 commons-fileupload 文件上传使用 Servlet 3.1 内置的文件上传功能 Spring MVC 中文件下载 Spring MVC 中文件上传 为了能上传文件,必须将 from 表单的 method 设置为 POST,并将 enctype 设置为 multipart/form-data…
建站知识
2024/11/13 13:37:12
SpringCloudAlibaba-整合openfeign和loadbalence(三)
目录地址:
SpringCloudAlibaba整合-CSDN博客 因为是order服务,调用user和product服务;所以这里在order模块操作;
1.引入依赖
<!--openfeign-->
<dependency><groupId>org.springframework.cloud</groupId…
建站知识
2024/11/10 16:42:32
kotlin项目引用
概要: 记录项目引用kotlin具体事项
1 object下build.gradle
buildscript {//声明引用版本ext.kotlin_version "1.4.20"repositories {google()mavenCentral()}dependencies {classpath "com.android.tools.build:gradle:4.2.0"//引用kotlinc…
建站知识
2024/11/2 12:39:52
CentOS7编译ZLMediaKit并使能WebRTC
使能WebRTC需要libsrtp库, libsrtp库需要openssl, 所以第一步先安装openssl, 系统自带的版本是1.0.2的, libsrtp需要1.1.1以上版本, 需要使用源码进行编译;
GCC准备
需要安装gcc7以上版本, 并切换到gcc7的编译环境
yum install centos-release-scl
yum install devtoolset-7…
建站知识
2024/11/24 19:48:52