摘要:
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 * 阅读全文
摘要:
以下命令请慎用 删除所有状态为退出的容器 docker rm $(docker ps --all -q -f status=exited) 删除tag标签为<none>的镜像 (windows系统不可用) docker rmi -f $(docker images | grep "<none>" | 阅读全文
摘要:
appid和appkey生成没有固定逻辑,一般根据自己的需求 Md5PwdEncoder类参考: https://www.cnblogs.com/pxblog/p/10528162.html public static void main(String[] args) { PwdEncoder pw 阅读全文
摘要:
m3u8测试播放地址 https://leshiyuncdn.ahjunqin.top/20231221/11lQU4M0/index.m3u8 播放页面html页面代码 <script src="//cdn.jsdelivr.net/npm/hls.js@latest"></script> <di 阅读全文
摘要:
示例代码 数据库查询方法,可以根据自己整合的框架来写即可 import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** * 数据库备份 */ public interface 阅读全文
摘要:
依赖处理 先排除Tomcat依赖 ,然后引入undertow依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions 阅读全文
摘要:
Unable to render this definition The provided definition does not specify a valid version field. Please indicate a valid Swagger or OpenAPI version fi 阅读全文
摘要:
有时候我们前端参数名称用的下划线,但是后台接收一般都用驼峰命名,这样就会导致前端参数无法接收到问题 加个配置 spring: jackson: property-naming-strategy: CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES 这样就会自动转换接收 阅读全文
摘要:
我们使用 JSON.toJSONString(list); 这种方式 如果字段为空,是不会进行序列化的 如果要序列化空值的话 使用 JSON.toJSONString(list, SerializerFeature.WriteMapNullValue); 其他一些方法 SerializerFeatu 阅读全文
摘要:
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework 阅读全文