上一页 1 2 3 4 5 6 7 8 9 10 ··· 74 下一页
摘要: 版权如何修改Tomcat默认端口号8080的方法Tomcat默认端口是8080,如果你电脑无法访问localhost:8080,那么很可能就是端口占用,我们就需要修改端口号。可以在tomcat配置文件中修改端口,在 server.xml 中修改。 一、找到server.xml文件打开之前安装好的To 阅读全文
posted @ 2023-03-14 18:36 kelelipeng 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 一、什么是fastjsonfastjson是阿里巴巴的开源JSON解析库,它可以解析JSON格式的字符串,支持将Java Bean序列化为JSON字符串,也可以从JSON字符串反序列化到JavaBean。 二、fastjson的优点 2.1 速度快fastjson相对其他JSON库的特点是快,从20 阅读全文
posted @ 2023-02-28 16:34 kelelipeng 阅读(1660) 评论(0) 推荐(0) 编辑
摘要: c#如何使用MemoryStream和BinaryFormatter进行对象的序列化和返序列化 1 下面是我写的一个序列化的类 public static class ObjSerialize{/// <summary>/// 将对象数组obj序列化,内存中的缓冲区的数据序列化/// </summa 阅读全文
posted @ 2023-02-23 15:20 kelelipeng 阅读(114) 评论(0) 推荐(0) 编辑
摘要: SpringBoot集成Logback遇到的问题 https://zhuanlan.zhihu.com/p/540737614 解决log4j和self4j日志报错Could NOT find resource [logback.groovy]及Could NOT find resource [lo 阅读全文
posted @ 2023-02-17 21:04 kelelipeng 阅读(1018) 评论(0) 推荐(0) 编辑
摘要: curl post请求发送json数据两种方式(Window/Linux) 设置请求头Content-Type curl发送post请求,默认的content-type是:application/x-www-form-urlencoded。要发送json格式,则需要设置请求头的content-typ 阅读全文
posted @ 2023-02-17 14:06 kelelipeng 阅读(16620) 评论(1) 推荐(0) 编辑
摘要: 使用AES的256位密钥加解密报错java.security.InvalidKeyException: Illegal key size。 编写微信小程序在获取用户时,需要根据小程序传来的iv,encryptedData,和sessionkey来解密,在本地使用postman测试没有问题,但是部署到 阅读全文
posted @ 2023-02-09 15:25 kelelipeng 阅读(374) 评论(0) 推荐(0) 编辑
摘要: https://6tail.cn/calendar/api.html#start.html// maven <dependency> <groupId>cn.6tail</groupId> <artifactId>lunar</artifactId> <version>1.2.28</version 阅读全文
posted @ 2023-02-01 17:28 kelelipeng 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/weixin_43822787/article/details/121036722 概述options 请求就是预检请求,可用于检测服务器允许的 http 方法。当发起跨域请求时,由于安全原因,触发一定条件时浏览器会在正式请求之前自动先发起 OP 阅读全文
posted @ 2023-01-29 11:52 kelelipeng 阅读(612) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_36691991/article/details/108848835 在使用postman请求接口得时候,使用get,post得时候我们是使用body下form-data来传输数据得,但是使用patch时候就不是了,默认是以x-www-for 阅读全文
posted @ 2023-01-29 11:21 kelelipeng 阅读(2626) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/zack_GZ/article/details/124974986 通常我们需要将日志打印到xxl-job的调度日志中时,会使用xxl-job提供的接口 XxlJobLogger.log("message xxxxxxxxxx") 但是这种方式不会将日志打 阅读全文
posted @ 2023-01-13 16:38 kelelipeng 阅读(5278) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 74 下一页