上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页
摘要: 1. <#IF>标签 逻辑判断符号冲突解决 两种方法 : 用符号代替,> gt, >= gte ,< lt , <= lte 例: <#if x gt y> 加括号 <#if(x>y)> 2.使用例子: <html> <head> <meta charset="UTF-8"> <link href= 阅读全文
posted @ 2020-06-29 22:43 shouyaya 阅读(1218) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_42166855/article/details/106805291 阅读全文
posted @ 2020-06-24 13:45 shouyaya 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1.查看微信官方文档:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_7&index=6 2. 使用sdk获取预订单信息,通过预订单信息发起支付 a.引用sdk依赖,该支付sdk文档:https://github.com/Pay- 阅读全文
posted @ 2020-06-23 12:04 shouyaya 阅读(1837) 评论(0) 推荐(1) 编辑
摘要: 1.引入maven依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency> 2.编写freema 阅读全文
posted @ 2020-06-23 11:43 shouyaya 阅读(1411) 评论(0) 推荐(0) 编辑
摘要: 1.在配置文件,写入自定义属性 2.创建相应的配置类 @Component @ConfigurationProperties(prefix = "wechat") //添加此注解自动将配置文件的值赋予下列属性 public class WechatAccountConfig { /** * 公众平台 阅读全文
posted @ 2020-06-21 09:38 shouyaya 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 1.查看微信官方文档了解大致流程:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_1 2.获取openid流程: 第一步:用户同意授权,获取code,通过访问: 第二步:通过code换取网页授权access_token,获得acc 阅读全文
posted @ 2020-06-18 23:21 shouyaya 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/jianglianye21/article/details/81743129?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-7.noneca 阅读全文
posted @ 2020-06-18 23:04 shouyaya 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 例子: 1.将Date类型从毫秒级变为秒级的: a.编写一个继承JsonSerializer的类: public class Data2LongSerializer extends JsonSerializer<Date> { @Override public void serialize(Date 阅读全文
posted @ 2020-06-18 10:14 shouyaya 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: 1.通过maven导入相关依赖: <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> </dependency> 2. 对表单数据绑定的对象添加相关的注解 可参考:https 阅读全文
posted @ 2020-06-17 23:06 shouyaya 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1.下载postman:https://www.getpostman.com/ 2.使用postman 阅读全文
posted @ 2020-06-17 22:58 shouyaya 阅读(2488) 评论(0) 推荐(2) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页