摘要: git config --list --show-origin 查看git文件下面所有对应文件目录 下面是设计配置文件 http的缓存大小 和 那个最低时间 和 速度 git config --global http.lowSpeedTime 999999 git config --global h 阅读全文
posted @ 2023-11-16 10:53 汤圆aiWL 阅读(47) 评论(0) 推荐(0)
摘要: @Resource注解是Java的注解,用于在运行时注入依赖项。如果两个不同的引用使用了相同的名字,可能会导致注入错误。 重新制定一个bean名称 ,或者更换为@Autowired来注入 阅读全文
posted @ 2023-11-15 16:48 汤圆aiWL 阅读(1413) 评论(0) 推荐(0)
摘要: 下面的路由配置- 访问路径为: http://localhost:9999/#/ok/productData/tpProductData js配置路由跳转const tpRouter = { path: '/ok', component: Layout, name: 'ok', meta: {}, 阅读全文
posted @ 2023-11-06 11:24 汤圆aiWL 阅读(74) 评论(0) 推荐(0)
摘要: 原因是持久化层的字段属性 跟 数据库的没有对应上, 类型不对 dao.DataIntegrityViolationException: Error attempting to get column 'STATUS' from result set. <if test="record.status ! 阅读全文
posted @ 2023-11-02 13:19 汤圆aiWL 阅读(1155) 评论(0) 推荐(0)
摘要: 报错信息 The bean 'productMapper' could not be injected because it is a JDK dynamic proxy The bean is of type 'com.sun.proxy.$Proxy224' and implements: pw 阅读全文
posted @ 2023-11-01 17:21 汤圆aiWL 阅读(1737) 评论(0) 推荐(0)
摘要: Oracle的表空间相关函数 TABLESPACE "SYSTEM" LOGGING NOCOMPRESS PCTFREE 10 INITRANS 1 STORAGE ( INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 FR 阅读全文
posted @ 2023-11-01 14:27 汤圆aiWL 阅读(73) 评论(1) 推荐(0)
摘要: 在Oracle数据库中创建一个唯一索引的SQL语句, 在数据库对应表里面 创建一个唯一索引, 创建唯一索引需要保证在被索引的字段上没有重复的值,否则创建会失败。另外,对于大表创建唯一索引可能会需要一些时间,因为数据库需要确保被索引字段的唯一性。 如果你的表"xxx表名称 "的"CODE"字段已经有了 阅读全文
posted @ 2023-10-31 17:26 汤圆aiWL 阅读(23) 评论(1) 推荐(0)