2024年12月10日

摘要: private void readFile(String docId, String token, String productResource, String docUrl){ String url = thirdConfig.getAttachmentUrl() + docId; //下载资源 阅读全文
posted @ 2024-12-10 16:40 james-roger 阅读(5) 评论(0) 推荐(0) 编辑

2024年11月20日

摘要: <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.8</version> </dependency> public ResultVO<UserInfoDTO> test 阅读全文
posted @ 2024-11-20 09:17 james-roger 阅读(2) 评论(0) 推荐(0) 编辑

2024年11月14日

摘要: 编程资料网站 http://www.cxyroad.com/ 阅读全文
posted @ 2024-11-14 09:01 james-roger 阅读(3) 评论(0) 推荐(0) 编辑

2024年7月10日

摘要: 有这么一个需求,有一个类有一个main方法,里面有一些业务操作,比如要发送http请求去查询一个数据等等,需要引入第三方依赖包。然后把这个类打成一个jar包,当运行这个jar包后就执行这个类的main方法 项目工程结构 pom.xml <dependencies> <!-- https://mvnr 阅读全文
posted @ 2024-07-10 15:07 james-roger 阅读(57) 评论(0) 推荐(0) 编辑

2024年7月5日

摘要: sql注入问题优化,order by 里面不能用下面这种方式,为了防止sql注入,验证输入的值是否合法,比如只能包含英文,数字和下划线应以英文开头 Map<String, Object> parameters = new HashMap<>(); sql.append(" where (lzbh l 阅读全文
posted @ 2024-07-05 14:19 james-roger 阅读(3) 评论(0) 推荐(0) 编辑

2024年7月4日

摘要: 解析出url地址里面的信息,在日志里面打印出来乱码。启动命令添加 -Dfile.encoding=utf-8,一定要在 -jar的前面 java -Dfile.encoding=utf-8 -jar demo.jar 阅读全文
posted @ 2024-07-04 16:50 james-roger 阅读(39) 评论(0) 推荐(0) 编辑

2024年5月16日

摘要: 在@FeignClient 注解上面加 contextId="TestFeignService" TestFeignService 是类名称 阅读全文
posted @ 2024-05-16 12:25 james-roger 阅读(15) 评论(0) 推荐(0) 编辑

2024年3月4日

摘要: 阅读全文
posted @ 2024-03-04 15:12 james-roger 阅读(60) 评论(0) 推荐(0) 编辑

2024年1月5日

摘要: 第一个原因是 方法上面没有加 @Transactional 第二个原因 有可能是 在同一个service类里面调用了另一个更新数据的方法。可以把更新数据的方法放到另一个类里面,然后引入这个类,再调用方法 阅读全文
posted @ 2024-01-05 09:42 james-roger 阅读(201) 评论(0) 推荐(0) 编辑

2023年12月14日

摘要: group: 'org.geotools', name: 'gt-shapefile', version: '23.0'里面自带了 commons-lang3。所以最好自己不要再引入commons-lang3的依赖,不然会有冲突 阅读全文
posted @ 2023-12-14 10:38 james-roger 阅读(108) 评论(0) 推荐(0) 编辑