博主首页
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 47 下一页
摘要: 合并分支 比较分支区别 阅读全文
posted @ 2021-12-08 11:26 笑~笑 阅读(79) 评论(0) 推荐(0)
摘要: jpa条件查询,or,and 使用 @Autowired private EntityManager entityManager; @Test public void test01() { CriteriaBuilder cb = entityManager.getCriteriaBuilder() 阅读全文
posted @ 2021-12-03 13:40 笑~笑 阅读(1680) 评论(0) 推荐(0)
摘要: 公众号的一些配置以及前面的域名配置我这里就不说了,我这里只记录了后端的签名接口 controller,就是普通的post请求,这里需要前端把扫一扫的那个页面url发给你,需要进行转码处理的url @PostMapping("/wxScan") public R wxScan(@RequestBody 阅读全文
posted @ 2021-11-18 08:39 笑~笑 阅读(374) 评论(0) 推荐(0)
摘要: @Autowired private ApplicationContext applicationContext; String className = map.get("className").toString(); Object bean = applicationContext.getBean 阅读全文
posted @ 2021-11-15 15:14 笑~笑 阅读(1452) 评论(0) 推荐(0)
摘要: 依赖 <dependency> <groupId>com.aliyun</groupId> <artifactId>dysmsapi20170525</artifactId> <version>2.0.6</version> </dependency> package com.sensor.sell 阅读全文
posted @ 2021-11-09 09:13 笑~笑 阅读(402) 评论(0) 推荐(0)
摘要: 去掉这个插件 阅读全文
posted @ 2021-11-04 09:24 笑~笑 阅读(1342) 评论(0) 推荐(0)
摘要: 如果是同一个订单 out_refund_no这个值每次需要不一样 阅读全文
posted @ 2021-10-20 10:38 笑~笑 阅读(814) 评论(0) 推荐(0)
摘要: Get请求 命令行发送请求 curl命令模拟Get请求: 1、使用curl命令: 1 2 3 4 curl "http://www.baidu.com" 如果这里的URL指向的是一个文件或者一幅图都可以直接下载到本地 curl -i "http://www.baidu.com" 显示全部信息 cur 阅读全文
posted @ 2021-10-15 14:51 笑~笑 阅读(732) 评论(0) 推荐(0)
摘要: 上传文件大小超过限制 # Spring 相关 spring: servlet: multipart: max-file-size: 20MB #单个文件限制 max-request-size: 20MB #整个请求限制 阅读全文
posted @ 2021-10-08 10:29 笑~笑 阅读(2835) 评论(0) 推荐(0)
摘要: //指明主键id @TableId(value = "user_id", type = IdType.AUTO) private Integer userId; 阅读全文
posted @ 2021-10-08 10:27 笑~笑 阅读(426) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 47 下一页