上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 60 下一页
摘要: 转自:https://www.cnblogs.com/logsharing/p/8448446.html#!comments GET和POST是HTTP请求的两种基本方法,要说它们的区别,接触过WEB开发的人都能说出一二。 最直观的区别就是GET把参数包含在URL中,POST通过request bo 阅读全文
posted @ 2022-03-10 20:05 Boblim 阅读(109) 评论(0) 推荐(0)
摘要: 1.问题现象 通过 mybatis 框架,实现 SQL 批量插入并返回每条数据的主键id时,出现异常:Caused by: org.apache.ibatis.binding.BindingException: Parameter ‘couponCodeList’ not found. Availa 阅读全文
posted @ 2022-03-10 17:26 Boblim 阅读(1014) 评论(0) 推荐(0)
摘要: 参考:https://www.jianshu.com/p/4e4cef2e82e1 参考:https://blog.csdn.net/qq_28411869/article/details/84104893 先上结论: 问题1:如果类中用了@Builder注解,而属性没有任何注解话,那么在你初始化这 阅读全文
posted @ 2022-03-09 20:14 Boblim 阅读(1418) 评论(0) 推荐(0)
摘要: 转自:https://www.cnblogs.com/lailailai/p/4560399.html 参考:https://blog.csdn.net/tterminator/article/details/52252966 参考:https://www.cnblogs.com/sunweiye/ 阅读全文
posted @ 2022-03-08 19:46 Boblim 阅读(633) 评论(0) 推荐(0)
摘要: 转自:https://www.cnblogs.com/zhangzhonghui/articles/12185863.html 参考:https://www.cnblogs.com/sunweiye/p/12003733.html 配置步骤如下: 打开 IDEA 中的 Run/Debug Confi 阅读全文
posted @ 2022-03-08 19:32 Boblim 阅读(1378) 评论(0) 推荐(0)
摘要: 异常详情 Bean with name ‘commonService’ has been injected into other beans [] in its raw version as part of a circular reference, but has eventually been 阅读全文
posted @ 2022-03-08 17:38 Boblim 阅读(3119) 评论(0) 推荐(0)
摘要: select * from 表名 where json字段名 ->> '$.json下的key值' 如果遇到json 嵌套的情况 select * from 表名 where json字段名 ->> '$.json下的key值.key值'以此类推。 (仅仅支持mysql5.7版本及以上) id me 阅读全文
posted @ 2022-03-08 17:23 Boblim 阅读(318) 评论(0) 推荐(0)
摘要: MD5 加密后的位数有两种:16 位与 32 位。16 位实际上是从 32 位字符串中取中间的第 9 位到第 24 位的部分,用 Java 语言来说,即: String md5_16 = md5_32.substring(8, 24); MD5 加密后的字符串又分为大写与小写两种,也就是其中的字母是 阅读全文
posted @ 2021-10-09 19:32 Boblim 阅读(2110) 评论(0) 推荐(0)
摘要: 这是我的一个小demo #!/bin/bash read -p "请输入3个数:" n1 n2 n3 if [ $n1 -gt $n2 ] && [ $n1 -gt $n3 ] then echo "max_num is $n1" elif [ $n3 -gt $n2 ] && [ $n1 -lt 阅读全文
posted @ 2021-10-09 18:55 Boblim 阅读(822) 评论(0) 推荐(0)
摘要: 1.在使用MySQL时,若表中含自增字段(auto_increment类型),则向表中insert一条记录后,可以调用last_insert_id()来获得最近insert的那行记录的自增字段值 $mdb->last_insert_id(); 但事实上,使用last_insert_id()时有很多注 阅读全文
posted @ 2021-10-09 18:09 Boblim 阅读(6767) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 60 下一页