摘要:
1. <#IF>标签 逻辑判断符号冲突解决 两种方法 : 用符号代替,> gt, >= gte ,< lt , <= lte 例: <#if x gt y> 加括号 <#if(x>y)> 2.使用例子: <html> <head> <meta charset="UTF-8"> <link href= 阅读全文
摘要:
https://blog.csdn.net/weixin_42166855/article/details/106805291 阅读全文
摘要:
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- 阅读全文
摘要:
1.引入maven依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency> 2.编写freema 阅读全文
摘要:
1.在配置文件,写入自定义属性 2.创建相应的配置类 @Component @ConfigurationProperties(prefix = "wechat") //添加此注解自动将配置文件的值赋予下列属性 public class WechatAccountConfig { /** * 公众平台 阅读全文
摘要:
1.查看微信官方文档了解大致流程:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_1 2.获取openid流程: 第一步:用户同意授权,获取code,通过访问: 第二步:通过code换取网页授权access_token,获得acc 阅读全文
摘要:
https://blog.csdn.net/jianglianye21/article/details/81743129?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-7.noneca 阅读全文
摘要:
例子: 1.将Date类型从毫秒级变为秒级的: a.编写一个继承JsonSerializer的类: public class Data2LongSerializer extends JsonSerializer<Date> { @Override public void serialize(Date 阅读全文