上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页
摘要: 第一章:问题 技术给我们带来了舒适的生活和无尽的财富,也成就了经济的繁荣。一句话,我们的世界因技术而改变。但是,技术的本质究竟是什么?它从何而来,又是如何进化的? 技术的循环:技术总是进行这样的循环,为解决老问题区采用新技术,新技术又引起新问题,新问题的解决又要诉诸更新的技术。 关注技术的理论之所以 阅读全文
posted @ 2023-01-17 01:12 使用D 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 新增是报错 1467: Failed to read auto-increment value from storage engine 原因是自增字段设置为了mediumint 长度为8,但是默认自增起始位置为1000000000,新增的主键超过了字段默认的最大值 阅读全文
posted @ 2022-12-05 15:21 使用D 阅读(171) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/369726283 https://www.sohu.com/a/426191561_808311 https://zhuanlan.zhihu.com/p/442561376 https://www.zhihu.com/column/c_1 阅读全文
posted @ 2022-11-04 23:39 使用D 阅读(7) 评论(0) 推荐(0) 编辑
摘要: The bean 'xxxUserMapper' could not be injected because it is a JDK dynamic proxy 原因 Mapper代码当时如下: public interface XxxUserMapper extends Mapper<XxxUse 阅读全文
posted @ 2022-10-31 16:37 使用D 阅读(2359) 评论(0) 推荐(1) 编辑
摘要: 可用通过BeanInfo接口创建BeanInfo类,并提供关于bean的方法、属性、事件和其他特性的显式信息。 通用方式 BeanInfo beanInfo = Introspector.getBeanInfo(TradeTransaction.class); 其中Introspector类提供了标 阅读全文
posted @ 2022-09-02 00:22 使用D 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Demo private static String zookeeperHost = System.getProperty("zookeeper.address", "127.0.0.1"); private static String zookeeperPort = System.getPrope 阅读全文
posted @ 2022-09-01 01:23 使用D 阅读(133) 评论(0) 推荐(0) 编辑
摘要: $str = 'name'; 转换为'n**e' 使用下面方法: $str = 'name';return self::actionIndex($str,1,strlen($str)-2,'*'); /** * 脱敏 * @param $string * @param $start * @param 阅读全文
posted @ 2022-08-25 10:15 使用D 阅读(244) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get update sudo apt-get intstall curl sudo apt-get intstall vim sudo apt install docker.io docker vesion Client: Version: 20.10.12 API versio 阅读全文
posted @ 2022-08-23 23:18 使用D 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 前端请求直接打到网关上,所以我们可以在网关上做一些汇总参数,方面下游服务使用: ip:服务器地址 tenantCode:租户 clientType:客户端类型,H5、wechat、alipay等 platform:平台,移动端、PC端 os:操作系统、iphone、Android 经纬度 count 阅读全文
posted @ 2022-08-23 23:17 使用D 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 客户希望在配置的商品集合中设置“所有商品只能买一件”(即每个客户只能购买一件商品),但是配置商品集合时,配置了每款商品只能买一件。 我们做的系统功能与客户希望的或者预期的不一致,要重新review他们想做的活动和实际的配置。 实际上也是对系统的功能的理解出现了偏差,我们应该从功能说明上、培训上、实际 阅读全文
posted @ 2022-08-23 23:11 使用D 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页