- 博客(95)
- 问答 (1)
- 收藏
- 关注
原创 python lambda 与map、filter、reduce编程式组合使用记录
python lambda 与map、filter、reduce编程式组合使用
2024-10-30 11:41:43 319
原创 python 高效读取多个geojson 写入一个sq3(Sqlite) 、效率提高90%+
python 高效读取多个geojson 写入一个sq3(Sqlite) 、效率提高90%+
2024-09-28 17:56:46 404
原创 Your local changes to the following files would be overwritten by merge:/.DS_Store
Your local changes to the following files would be overwritten by merge:/.DS_Store
2024-05-06 10:00:33 890
原创 springboot Logback 不同环境,配置不同的日志输出路径
Logback 不同环境,配置不同的日志输出路径, mac 笔记本开发,日志文件写到/data/logs/下,控制台报出:Failed to create parent directories for [/data/logs/...........在logback-spring.xml添加配置。
2024-04-17 10:39:43 1361
原创 postgresql: IOException: Tried to send an out-of-range integer as a 2-byte value: 35834
Tried to send an out-of-range integer as a 2-byte value: 35834
2023-12-13 11:37:28 517
原创 配置hikari数据库连接池时多数据源不生效
上述配置:hikari 与dynamic 对齐,处于同级。都位于spring.datasource下。如果是单数据源,这么配置生效,没问题,but 多数据源不生效。加载上述配置,此时发现默认配置生效。
2023-11-23 19:15:02 1826
原创 Long.parseLong(“01000000000000000000001000001000“) 异常 :java.lang.NumberFormatException
Long.parseLong("01000000000000000000001000001000") 异常 :java.lang.NumberFormatException
2023-10-23 10:45:27 611
原创 初识 python 装饰器
装饰器(Decorator)是Python中一种用于修改函数或类的行为的设计模式。装饰器允许您在不修改原始函数或类的情况下,给它们添加新的功能,这使得代码更具可重用性和可扩展性。简而言之,就是一个返回函数的高阶函数,作用就是为其他函数添加附加功能,在代码运行的时候动态增加功能的方式。
2023-09-19 11:44:36 230
原创 SQLAlchemy 封装的工具类,数据库pgsql(数据库连接池)
SQLAlchemy 是 Python 著名的 ORM 工具包。通过 ORM,开发者可以用面向对象的方式来操作数据库,不再需要编写 SQL 语句。SQLAlchemy 支持多种数据库,除 sqlite 外,其它数据库需要安装第三方驱动。
2023-09-01 19:45:40 2161 2
原创 psycopg2 使用ThreadedConnectionPool 工具封装
psycopg2 使用ThreadedConnectionPool 工具封装
2023-08-22 16:31:17 670
原创 postgresql 查询:查询是否在该列:一个字符串以“|”分割的列
需求是:查询一个值是否在link_laneId 中存在(注意这个值是个复合类型,以“|”分割的字符串)。例如:regexp_split_to_array('被分割的字符串', '的')上面是section 表中的link_laneid 的字段描述。
2023-08-02 10:42:53 600
原创 警告信息: java.lang.ClassNotFoundException: com.sun.tools.javac.processing.JavacProcessingEnvironment
java.lang.ClassNotFoundException: com.sun.tools.javac.processing.JavacProcessingEnvironment
2023-06-08 17:20:13 1209
原创 sprintboot 屏蔽注册eureka
com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient Request execution errorcom.sun.jersey.api.client.ClientHandlerException: java.net.UnknownHostException: imp-register: nodename nor servname provided, or not known
2023-06-02 11:05:52 914
原创 org.postgresql.util.PSQLException: Invalid targetServerType value: primary
org.postgresql.util.PSQLException: Invalid targetServerType value: primary
2023-04-12 17:41:29 1304
转载 OpenDRIVE文件格式详解
Unity解析OpenDRIVE地图数据,并生成路网模型_方寸想法,编码宇宙XML节点和属性的导图。“【】”表示这个节点一般有多个。
2023-03-05 10:30:27 6455 5
转载 地理、Mercator(墨卡托)、UTM 之间关系
坐标为"地理(geographics)"形式或者说是" 纬度(latitude)/经度(longitude)"形式的数据非常常见。与Mercator(墨卡托)、UTM(通用横轴墨卡托)、Stateplane中的坐标不同,地理坐标不是笛卡尔平面坐标(Cartesian coordinates)
2023-02-14 10:56:29 1464
原创 Python PIL 学习笔记
PIL,全称Python Image Library,主要作用是图像处理,可用于图片剪切、粘贴、缩放、镜像、水印、颜色块、滤镜、图像格式转换、色场空间转换、验证码、旋转图像、图像增强、直方图处理、插值和滤波等功能。
2022-12-13 16:32:48 962
原创 Python GUI编程 Tkinter 简单使用记录
Tkinter 是 Python 的标准 GUI 库。Python 使用 Tkinter 可以快速的创建 GUI 应用程序。
2022-12-12 16:51:07 111
原创 AttributeError: module ‘tkinter‘ has no attribute ‘Tk‘
AttributeError: module 'tkinter' has no attribute 'Tk'
2022-12-12 15:09:10 1465 3
原创 Java8 遍历List 使用stream().parallel()并发安全
引入了并行流的概念来进行并行处理,而并行流(Parallel Stream)利用所有可用CPU内核的优势,并并行处理任务。其原理(Parallel Stream)是可以把大任务分成多个小任务执行, 最后再把执行结果进行合并, ForkJoinPool用工作窃取算法实现。
2022-12-07 12:03:00 7534 2
原创 Springboot 使用 BaseTypeHandler 与 TypeHandler 记录
TypeHandler是 springboot 在使用Mybatis插件的时候,有需要将Java对象和数据库JDBC数据类型之间进行转换。
2022-11-30 16:38:36 1068
原创 TypeError: ‘module‘ object is not callable 报错解决
TypeError: 'module' object is not callable
2022-11-23 10:14:53 2134
原创 java 使用GeoTools工具 geojson 与shp 相互转换
java 使用GeoTools工具 geojson 与shp 相互转换
2022-10-31 11:53:28 3991 10
空空如也
ASIHTTPRequest 替换AFNetworking出现内存暴涨
2016-05-19
TA创建的收藏夹 TA关注的收藏夹
TA关注的人