上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 68 下一页
摘要: FileSaver.js /* FileSaver.js * A saveAs() FileSaver implementation. * 1.3.2 * 2016-06-16 18:25:19 * * By Eli Grey, http://eligrey.com * License: MIT * 阅读全文
posted @ 2022-07-19 21:12 yvioo 阅读(1396) 评论(0) 推荐(0) 编辑
摘要: 以下命令请慎用 删除所有状态为退出的容器 docker rm $(docker ps --all -q -f status=exited) 删除tag标签为<none>的镜像 (windows系统不可用) docker rmi -f $(docker images | grep "<none>" | 阅读全文
posted @ 2022-07-14 16:24 yvioo 阅读(718) 评论(0) 推荐(0) 编辑
摘要: appid和appkey生成没有固定逻辑,一般根据自己的需求 Md5PwdEncoder类参考: https://www.cnblogs.com/pxblog/p/10528162.html public static void main(String[] args) { PwdEncoder pw 阅读全文
posted @ 2022-07-13 15:53 yvioo 阅读(3053) 评论(0) 推荐(0) 编辑
摘要: m3u8测试播放地址 https://leshiyuncdn.ahjunqin.top/20231221/11lQU4M0/index.m3u8 播放页面html页面代码 <script src="//cdn.jsdelivr.net/npm/hls.js@latest"></script> <di 阅读全文
posted @ 2022-07-10 15:56 yvioo 阅读(5310) 评论(0) 推荐(0) 编辑
摘要: 示例代码 数据库查询方法,可以根据自己整合的框架来写即可 import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** * 数据库备份 */ public interface 阅读全文
posted @ 2022-07-08 14:44 yvioo 阅读(2352) 评论(0) 推荐(0) 编辑
摘要: 依赖处理 先排除Tomcat依赖 ,然后引入undertow依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions 阅读全文
posted @ 2022-06-30 09:17 yvioo 阅读(639) 评论(0) 推荐(0) 编辑
摘要: Unable to render this definition The provided definition does not specify a valid version field. Please indicate a valid Swagger or OpenAPI version fi 阅读全文
posted @ 2022-06-29 09:42 yvioo 阅读(2875) 评论(0) 推荐(0) 编辑
摘要: 有时候我们前端参数名称用的下划线,但是后台接收一般都用驼峰命名,这样就会导致前端参数无法接收到问题 加个配置 spring: jackson: property-naming-strategy: CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES 这样就会自动转换接收 阅读全文
posted @ 2022-06-22 17:23 yvioo 阅读(1962) 评论(0) 推荐(0) 编辑
摘要: 我们使用 JSON.toJSONString(list); 这种方式 如果字段为空,是不会进行序列化的 如果要序列化空值的话 使用 JSON.toJSONString(list, SerializerFeature.WriteMapNullValue); 其他一些方法 SerializerFeatu 阅读全文
posted @ 2022-06-15 13:59 yvioo 阅读(1902) 评论(0) 推荐(0) 编辑
摘要: import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework 阅读全文
posted @ 2022-06-03 20:27 yvioo 阅读(1257) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 68 下一页