上一页 1 2 3 4 5 6 ··· 38 下一页
摘要: -- 创建空间数据的表 CREATE TABLE spatial_table ( id serial PRIMARY KEY, name varchar, geom geometry(Point, 4326) -- 4326 是 WGS 84 坐标系统 ); 插入空间坐标数据,longitude l 阅读全文
posted @ 2025-02-14 14:29 余生请多指教ANT 阅读(32) 评论(0) 推荐(0)
摘要: postgres的安装去查看我的pgsql14的安装,安装都是一样的 这里使用的是pgsql17 空间插件地址: https://download.osgeo.org/postgis/windows/pg17/ 安装postgis的目录要与pgadmin安装路径一直。 我的路径是:C:\Progra 阅读全文
posted @ 2025-02-14 13:49 余生请多指教ANT 阅读(47) 评论(0) 推荐(0)
摘要: springcloud版本体系更新有发生重大变更之后,配置项发生了大变化。 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <ve 阅读全文
posted @ 2025-02-11 22:12 余生请多指教ANT 阅读(37) 评论(0) 推荐(0)
摘要: 数据库层面 数据库本身会对未提交的数据状态进行管理,主要通过以下机制: 1. 事务日志(Transaction Log) 重做日志(Redo Log) 重做日志用于记录数据库中所有对数据页的修改操作。当应用程序执行数据修改操作(如插入、更新、删除)时,数据库会先将这些操作记录到重做日志中,而不是立即 阅读全文
posted @ 2025-02-10 14:56 余生请多指教ANT 阅读(110) 评论(0) 推荐(0)
摘要: package com.io.netty.netty.netty12; import io.netty.bootstrap.Bootstrap; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelFuture; import 阅读全文
posted @ 2025-02-10 14:43 余生请多指教ANT 阅读(14) 评论(0) 推荐(0)
摘要: package com.io.netty.netty.netty13; import io.netty.bootstrap.Bootstrap; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelFuture; import 阅读全文
posted @ 2025-02-10 14:40 余生请多指教ANT 阅读(12) 评论(0) 推荐(0)
摘要: /** * tcp/ip协议都会有黏包,半包这个问题,UDP没有这个问题 */ @Slf4j public class HelloWorldClient { public static void main(String[] args) throws InterruptedException { Ni 阅读全文
posted @ 2025-02-08 16:45 余生请多指教ANT 阅读(9) 评论(0) 推荐(0)
摘要: 在java中结合线程池,返回Callable返回任务使用 public static void main(String[] args) throws ExecutionException, InterruptedException { ExecutorService executorService 阅读全文
posted @ 2025-02-08 15:04 余生请多指教ANT 阅读(13) 评论(0) 推荐(0)
摘要: 实体类: package org.wangbiao.safetychain.handler; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework. 阅读全文
posted @ 2025-02-06 17:39 余生请多指教ANT 阅读(18) 评论(0) 推荐(0)
摘要: [Unit] Description=ZooKeeper Service After=network.target [Service] Type=forking ExecStart=/usr/package/zookeeper3.8.4/bin/zkServer.sh start ExecStop= 阅读全文
posted @ 2025-01-29 21:28 余生请多指教ANT 阅读(15) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 38 下一页