-
PostgreSQL 搭建主从同步实现读写分离
主库配置 设置listen_addresses,wal_level alter system set listen_addresses = '*'; alter system set wal_lev
2024-11-05, Views: 31 , Topics: PostgreSQL
-
MyBatis-Plus 使用 TableInfoHelper 和 LambdaUtils 获取表字段及信息
TableInfoHelper getTableInfo获取表信息,getFieldList获取表字段信息。 TableInfo tableInfo = TableInfoHelper.getTab
2024-10-31, Views: 74 , Topics: MyBatis-Plus
-
MyBatis-Plus 多个动态 where 条件
场景 在编写自定义SQL时,可能会有子查询,所以出现多个where条件的情况。 限制 目前MyBatis-Plus只支持一个自定义参数ew。 改造 假设2个where条件的SQL。 处理 Wrapp
2024-10-30, Views: 71 , Topics: MyBatis-Plus
-
MyBatis-Plus 使用多数据源实现读写分离
添加依赖 添加多数据源依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>dynamic-datasource-s
2024-10-29, Views: 76 , Topics: MyBatis-Plus
-
MyBatis-Plus 分页插件
开启插件 @Configuration public class MybatisPlusConfig { /** * 添加分页插件 */ @Bean p
2024-10-28, Views: 83 , Topics: MyBatis-Plus
-
MyBatis-Plus lambdaUpdate 更新 FieldFill.UPDATE 字段
FieldFill.UPDATE 基类中定义了fill = FieldFill.UPDATE,更新时自动填充的字段。 @Getter @Setter @ToString public abstrac
2024-10-25, Views: 100 , Topics: MyBatis-Plus
-
MyBatis-Plus 动态选择需要查询的列
sqlSelect Wrapper对象中有sqlSelect方法可以获取MyBatis-Plus组织后的select列。 在xml或@Select等语句中可以使用${ew.sqlSelect}。 @
2024-10-24, Views: 74 , Topics: MyBatis-Plus
-
MyBatis-Plus 动态 where 条件
customSqlSegment Wrapper对象中有customSqlSegment方法可以获取MyBatis-Plus组织后的where条件。 在xml或@Select等语句中可以使用${ew
2024-10-23, Views: 126 , Topics: MyBatis-Plus
-
HuggingFace git lfs 下载大模型文件
安装 macOS brew install git-lfs Windows git lfs install 下载 git lfs install git clone https://huggin
2024-10-21, Views: 121 , Topics: HuggingFace Git
-
使用 llama.cpp 将 HuggingFace 模型转为 GGUF 格式
clone git repo git clone https://github.com/ggerganov/llama.cpp.git 安装 Python 依赖 进入到llama.cpp文件夹 p
-
本地运行 Llama3.2 和 Open WebUI
Ollama 在Ollama官方网站上下载对应的安装包:https://ollama.com 安装包是Ollama程序,不是模型。 运行模型 Ollama安装完成后,拉取模型。 运行后使用Contr
-
Spring Boot Debug 时抛出 StackOverflowError 异常
现象 在Debug时抛出了StackOverflowError异常,但是正常运行又没有问题。 原因 使用了Lombok的@Data注解,而两个对象中分别持有了对方的引用。 即:对象A中有一个B类型的
-
Spring Boot Controller 返回 JSON 统一处理 key 字符串大小写
需求 需要对返回的JSON字符串中的key,全部转为首字母大写。 相关配置 返回值 @Setter @Getter @Data public class Response { privat
2024-09-18, Views: 251 , Topics: JSON Spring Boot Jackson
-
Spring Boot Controller 对于枚举类型的处理
示例 Controller @GetMapping("/test") public Object test() { return Result.SUCCESS; } Enum @Gette
2024-09-13, Views: 273 , Topics: Spring Boot Jackson JSON
-
JavaScript Clipboard 复制到剪切板功能
Clipboard navigator.clipboard.writeText("复制的内容") .then(() => { console.log("success");
2024-09-10, Views: 261 , Topics: JavaScript
-
Nginx 转发 HTTPS 请求
说明 对于https请求,与http请求一样,使用proxy_pass即可(不包括自签名HTTPS证书)。 配置 location /api/ { proxy_pass https://te
-
JavaScript String 转 Number
需求 将字符串类型的'0.01'字段转为数字类型。 代码 转换 使用Number()函数进行转换。 let a = Number('0.01') 判断 使用isNaN函数判断是否是合法的数字类型。
2024-09-03, Views: 223 , Topics: JavaScript
-
Nginx 请求 URL 返回 301 状态码
原因 在请求URL时发现没有添加/的请求,返回的是301状态码。 示例 test是一个文件夹,文件夹中有一个index.html页面。 http://localhost:8080/test 从定向
2024-09-02, Views: 396 , Topics: Nginx
-
macOS 打开微信小程序体验版
需求 需要在Mac电脑上打开微信小程序的体验版本。 现状 直接从微信客户端中打开,会显示白屏。 解决 截至2023-11-22日,Mac电脑中打开体验版小程序,只能通过小程序助手(微信官方的一款小程
-
Spring Boot MyBatis 及 MyBatis-Plus 禁用一级缓存
场景 在同一个session中(大多场景是同一次请求中),需要多次执行相同的查询语句,来判断是否有数据变更。 一级缓存 在以上场景下,MyBatis/MyBatis-Plus因为默认开启了一级缓存,
2024-08-29, Views: 346 , Topics: MyBatis MyBatis-Plus Spring Boot