上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页
摘要: maven引用: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>2.2.2.RELEASE</version> 阅读全文
posted @ 2023-03-05 00:12 使用D 阅读(48) 评论(0) 推荐(0)
摘要: 例子如下: 1、maven-clean-plugin插件 执行mvn clean或mvn clean:clean来调用这个插件清理项目。 注意下面日志:Deleting D:\selfProjects\common-project-spring-boot\common-project-job\tar 阅读全文
posted @ 2023-02-25 23:49 使用D 阅读(1140) 评论(0) 推荐(0)
摘要: 第一章:问题 技术给我们带来了舒适的生活和无尽的财富,也成就了经济的繁荣。一句话,我们的世界因技术而改变。但是,技术的本质究竟是什么?它从何而来,又是如何进化的? 技术的循环:技术总是进行这样的循环,为解决老问题区采用新技术,新技术又引起新问题,新问题的解决又要诉诸更新的技术。 关注技术的理论之所以 阅读全文
posted @ 2023-01-17 01:12 使用D 阅读(358) 评论(0) 推荐(0)
摘要: 新增是报错 1467: Failed to read auto-increment value from storage engine 原因是自增字段设置为了mediumint 长度为8,但是默认自增起始位置为1000000000,新增的主键超过了字段默认的最大值 阅读全文
posted @ 2022-12-05 15:21 使用D 阅读(338) 评论(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 阅读(21) 评论(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 阅读(3087) 评论(0) 推荐(1)
摘要: 可用通过BeanInfo接口创建BeanInfo类,并提供关于bean的方法、属性、事件和其他特性的显式信息。 通用方式 BeanInfo beanInfo = Introspector.getBeanInfo(TradeTransaction.class); 其中Introspector类提供了标 阅读全文
posted @ 2022-09-02 00:22 使用D 阅读(181) 评论(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 阅读(188) 评论(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 阅读(263) 评论(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 阅读(52) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页