Java
mark
GodricV
这个作者很懒,什么都没留下…
展开
-
Http请求外部接口返回308
问题现状postman可以正常请求,但是后端代码请求返回,protocol=http/1.1, code=308, message=Permanent Redirect308重定向是什么状态重定向编码,有301、302和307、308,一般我们遇到的都是浏览器端的302重定向,其他几个很少遇到。下面是一篇关于这几种状态码的介绍HTTP 中的 301、302、303、307、308 响应状态码如何解决先说一下我是如何解决的,原本请求的是http协议,与接口方了解后,有https协议,换..原创 2021-01-13 10:55:52 · 9893 阅读 · 2 评论 -
mybaitis-plus 代码生成
mybaitis-plus 代码生成1. Generator.java2. controller.java.vm3. entity.java.vm4. mapper.java.vm5. mapper.xml.vm6. service.java.vm7. serviceImpl.java.vm参考1. Generator.java@SpringBootTest@RunWith(SpringRunner.class)public class MybatisGenerator { /**原创 2020-10-30 14:04:26 · 283 阅读 · 1 评论 -
反射创建对象(Mybatis 对象工厂类实现)
public <T> T create(Class<T> type) { return create(type, null, null); } @SuppressWarnings("unchecked") public <T> T create(Class<T> type, List<Class<?>> constructorArgTypes, List<Object> constructorArg..原创 2020-10-10 15:32:15 · 228 阅读 · 0 评论 -
SpringBoot集成jackson 日期的序列化和反序列化配置
项目经常遇到日期处理的问题,故做个总结。Date类型没有设置日期格式增加配置spring: jackson: #日期格式化 date-format: yyyy-MM-dd HH:mm:ss serialization: #格式化输出 indent_output: true #忽略无法转换的对象 fail_on_empty_beans: false #设置空如何序列化 defaultPropertyInc原创 2020-09-06 17:27:01 · 5643 阅读 · 0 评论 -
nexus maven 私服搭建(mac)
nexus 3nexus 的作用下载安装配置mvn deploy问题nexus 的作用指定私服的中央地址、将自己的Maven项目指定到私服地址、从私服下载中央库的项目索引、从私服仓库下载依赖组件、将第三方项目jar上传到私服供其他项目组使用下载下载地址:https://www.sonatype.com/download-oss-sonatype百度网盘:链接: https://pan.baidu.com/s/1zrKiwe46Fa6-aVXUYNpUuQ 提取码: 55x7安装解压后,目录b原创 2020-06-15 23:48:17 · 361 阅读 · 0 评论