document.write("");
上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: 前提: 已知A表,B表,且 A表一对多B表 查询B表数据的同时,同步关联的A表数据 1. A表的实体类中: @OneToMany(mappedBy = "b", fetch = FetchType.LAZY) @JsonIgnore private Set<B> bs = new HashSet<> 阅读全文
posted @ 2024-09-23 14:08 人间春风意 阅读(15) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2024-09-17 19:25 人间春风意 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 主要包含:springboot+jpa+hibernate+mysql+lombok (两年前写过一个,现在重新记录一个) 1. 目录结构: 2. pom 文件 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://mav 阅读全文
posted @ 2024-09-10 13:56 人间春风意 阅读(127) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2024-09-04 14:41 人间春风意 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ETL:将大量的原始数据,经过抽取(Extract)和清洗转换(Transform)后,加载(Load)到目的端的过程,称为ETL,实现这种过程的工具,也就是ETL工具 版本:DataX v202309 DataXWeb 2.1.3-alpha-release DataX:阿里云开源的一个异构数据源 阅读全文
posted @ 2024-09-02 08:54 人间春风意 阅读(445) 评论(2) 推荐(1) 编辑
摘要: 步骤: 1. 访问 https://pypi.org/ 2. 搜索要下载的依赖 3. 下载tar.gz文件 4. 解压,再解压(第一次解压后的dist文件夹内tar文件需解压) 5. 解压后的文件夹内部,有setup.py文件, 执行 python setup.py install 即可 注意:此种 阅读全文
posted @ 2024-07-26 15:34 人间春风意 阅读(118) 评论(0) 推荐(1) 编辑
摘要: 背景:访问https接口,使用http代理 版本:requests: 2.31.0 从报错可以看出,是proxy相关的报错 调整代码,设定不使用代理,将http与https对应的proxy值置空即可(尝试过proxies = {},但此写法不生效) proxies = { 'http': '', ' 阅读全文
posted @ 2024-07-26 15:30 人间春风意 阅读(313) 评论(0) 推荐(0) 编辑
摘要: import requests # 请求接口 import ssl context = ssl.create_default_context() context.check_hostname = False context.verify_mode = ssl.CERT_NONE response = 阅读全文
posted @ 2024-07-26 13:39 人间春风意 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 根据个人经验,报这个错误是因为nacos里并没有同步seata的config导致的 配置文档:https://www.bookstack.cn/read/seata-1.3.0/4b2f4de4831acdf3.md 自行调整即可, 贴一下Debug时的文件路径: io.seata:seata-al 阅读全文
posted @ 2024-07-24 11:01 人间春风意 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 使用Seata 1.3.0版本,测试A服务调用B服务,且A方法中,手动写了一个异常,测试是否正常回滚(Mysql已经测试过) 发现报错:ORA-02289: 序列不存在 一看就是undo_log这张表的sequence没有建立,导致数据保存不了, 太久没有用oracle了,之前搜索undo_log的 阅读全文
posted @ 2024-07-19 15:12 人间春风意 阅读(39) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页