Dict.CN 在线词典, 英语学习, 在线翻译 ------------- MyGitee My腾云code My51cto

Happy_EveryDay

可以平凡 不可以平庸 无爱则无忧,无欲则无求,无怒而无敌,无怨才是佛。所有烦恼,都是放不下的执著 开源技群 328035181 MyGitee

博客园 首页 管理
上一页 1 2 3 4 5 6 7 ··· 46 下一页

2026年3月31日 #

摘要: 一、EMQX 免费版 docker安装并配置持久化到服务器 安装命令根据实际部署情况调整 版本地址:官方镜像主页 | 发布版Tags最新版本命令: docker pull emqx/emqx:latest指定版本命令: docker pull emqx/emqx:4.2.9文档更新记录:2021/0 阅读全文
posted @ 2026-03-31 16:24 2026cn 阅读(82) 评论(0) 推荐(0)

摘要: 阅读全文
posted @ 2026-03-31 15:16 2026cn 阅读(17) 评论(0) 推荐(0)

摘要: 阅读全文
posted @ 2026-03-31 15:15 2026cn 阅读(8) 评论(0) 推荐(0)

2026年3月30日 #

摘要: 1、pom.xml <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc 阅读全文
posted @ 2026-03-30 16:55 2026cn 阅读(39) 评论(0) 推荐(0)

摘要: 阅读全文
posted @ 2026-03-30 10:12 2026cn 阅读(15) 评论(0) 推荐(0)

2026年3月28日 #

摘要: 1、网卡 ens33,当前 IP 192.168.91.165 2、确认网关信息(VMware NAT 模式) 在 VMware 里,NAT 模式的网关通常是 192.168.91.2,你也可以在宿主机上查看: Linux:ip route show 看默认路由 3. 编辑网卡配置文件 打开 /et 阅读全文
posted @ 2026-03-28 10:27 2026cn 阅读(41) 评论(0) 推荐(0)

2026年3月12日 #

摘要: https://mirrors.tuna.tsinghua.edu.cn/centos-stream/10-stream/BaseOS/x86_64/iso/CentOS-Stream-10-latest-x86_64-dvd1.iso 阅读全文
posted @ 2026-03-12 10:20 2026cn 阅读(68) 评论(0) 推荐(0)

2026年1月25日 #

摘要: 1、百炼 创建工作流应用 阅读全文
posted @ 2026-01-25 20:24 2026cn 阅读(24) 评论(0) 推荐(0)

摘要: 1、pom <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 阅读全文
posted @ 2026-01-25 19:24 2026cn 阅读(10) 评论(0) 推荐(0)

摘要: 阅读全文
posted @ 2026-01-25 18:42 2026cn 阅读(10) 评论(0) 推荐(0)

摘要: 安-->史 张守珪1(幽 卢龙)-->安绿山2-->安庆绪3 -->史思明2--> 史朝义3 玄宗1-->王忠嗣(义)2-->肃宗2 萧嵩1.河西-->王忠嗣2-->哥舒翰3(潼 河西 陇右)-->高适-->李光弼3(太原 河东节度 契)-->元载(婿)4-->郭子仪3--> 郭元振(朔方 灵) 3 阅读全文
posted @ 2026-01-25 15:42 2026cn 阅读(15) 评论(0) 推荐(0)

摘要: 1、docker 安装 flink # 启动 Flink Session Clusterdocker run --name flink-jobmanager -p 8081:8081 -d flink:1.18.0-scala_2.12 jobmanager docker run --name fl 阅读全文
posted @ 2026-01-25 03:23 2026cn 阅读(13) 评论(0) 推荐(0)

2026年1月24日 #

摘要: 阅读全文
posted @ 2026-01-24 12:03 2026cn 阅读(13) 评论(0) 推荐(0)

2026年1月20日 #

摘要: 一、SmDecryptUtil sm4加密工具类 import cn.hutool.crypto.SmUtil;import cn.hutool.crypto.digest.DigestUtil;import cn.hutool.crypto.digest.Digester;import cn.hu 阅读全文
posted @ 2026-01-20 23:28 2026cn 阅读(169) 评论(0) 推荐(0)

2026年1月13日 #

摘要: # 创建目录 mkdir -p /etc/docker # 复制内容 tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": [ "https://mirrors.tuna.tsinghua.edu.cn", "http://mirror 阅读全文
posted @ 2026-01-13 19:23 2026cn 阅读(40) 评论(0) 推荐(0)

2026年1月9日 #

摘要: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads SQL Server 2025 Developer 获取免费的 Developer 版本,用于在非生产环境进行开发和测试。 下载 Standard Developer 版本 阅读全文
posted @ 2026-01-09 21:38 2026cn 阅读(132) 评论(0) 推荐(0)

2025年10月26日 #

摘要: 一个接口可能需要调用 N 个其他服务的接口,这在项目开发中还是挺常见的。举个例子:用户请求获取订单信息,可能需要调用用户信息、商品详情、物流信息、商品推荐等接口,最后再汇总数据统一返回。 如果是串行(按顺序依次执行每个任务)执行的话,接口的响应速度会非常慢。考虑到这些接口之间有大部分都是 无前后顺序 阅读全文
posted @ 2025-10-26 20:29 2026cn 阅读(66) 评论(0) 推荐(0)

2025年8月25日 #

摘要: @Configurationpublicclass TransactionManagerConfigBean { @Autowired private DataSource dataSource; /** * 自定义一个事务管理器1,同时作为默认事务管理器 * @return */ @Bean(na 阅读全文
posted @ 2025-08-25 22:50 2026cn 阅读(27) 评论(0) 推荐(0)

2025年7月17日 #

摘要: 1、 docker pull bladex/sentinel-dashboard:1.8.7 2、 docker run -d \> -p 8858:8858 \> -p 8719:8719 \> --name sentinel-dashboard bladex/sentinel-dashboard 阅读全文
posted @ 2025-07-17 15:35 2026cn 阅读(168) 评论(0) 推荐(0)

摘要: 1、docker pull nacos/nacos-server:v2.2.1 2、 # 1) 如果同名容器已存在,先删掉 docker rm -f nacos-standalone 2>/dev/null# 2) 启动 Nacos 2.2.1(连接宿主机192.168.177.128映射端口 13 阅读全文
posted @ 2025-07-17 10:56 2026cn 阅读(80) 评论(0) 推荐(0)

2025年7月16日 #

摘要: 引言 随着人工智能的发展,大模型的应用越来越广泛,它们不仅能够理解自然语言,还能在特定领域内提供专业化的知识服务。为了满足个人或小型团队对于数据隐私保护的需求,本地部署大模型并搭建私有知识库成为了一种趋势。本文将介绍如何使用Ollama、DeepSeek和AnythingLLM来构建这样一个系统,使 阅读全文
posted @ 2025-07-16 16:26 2026cn 阅读(289) 评论(0) 推荐(0)

摘要: https://api.xty.app/ 阅读全文
posted @ 2025-07-16 11:05 2026cn 阅读(35) 评论(0) 推荐(0)

2025年7月15日 #

摘要: 参考sb-ai-alibaba 20250715 教育经历 北京大学软件工程本科2005.09-2009.06 主修课程:Java语言开发、C语言开发、操作系统、编译原理、计算机网络、算法导论、电商商务、电子基础、高等数学、概率论与统计、离散数学。 工作经验 阿里巴巴有限公司算法工程师 2009-7 阅读全文
posted @ 2025-07-15 18:22 2026cn 阅读(50) 评论(0) 推荐(0)

摘要: 参考sb-ai-alibaba 20250715 1、 package com.ds.aiaibabarag.config;import org.springframework.ai.chat.client.ChatClient;import org.springframework.ai.docum 阅读全文
posted @ 2025-07-15 16:57 2026cn 阅读(89) 评论(0) 推荐(0)

摘要: 参考sb-ai-alibaba 20250715 一、ImageModel 1、 package com.ds.aialibabaother.controller;import com.alibaba.cloud.ai.dashscope.api.DashScopeImageApi;import c 阅读全文
posted @ 2025-07-15 15:33 2026cn 阅读(90) 评论(0) 推荐(0)

摘要: https://java2ai.com/docs/1.0.0.2/get-started/ ai-alibaba doc 1、创建aliyunai-key https://www.aliyun.com/product/bailian https://bailian.console.aliyun.co 阅读全文
posted @ 2025-07-15 11:06 2026cn 阅读(50) 评论(0) 推荐(0)

摘要: 1、docker ollama, ollama run deepseek-r1:1.5b 宿主机192.168.177.128 2、springboot实列 2.1 application.properties spring.application.name=ai-ollamaserver.port 阅读全文
posted @ 2025-07-15 10:17 2026cn 阅读(28) 评论(0) 推荐(0)

2025年7月13日 #

摘要: 参考: sb-deepseek20250703 1、 package com.ds.aifunction.config;import org.springframework.ai.tool.annotation.Tool;import org.springframework.stereotype.C 阅读全文
posted @ 2025-07-13 18:43 2026cn 阅读(53) 评论(0) 推荐(0)

摘要: 参考: sb-deepseek20250703 1、 package com.ds.aichat.controller;import org.springframework.ai.chat.messages.Message;import org.springframework.ai.chat.mes 阅读全文
posted @ 2025-07-13 16:29 2026cn 阅读(47) 评论(0) 推荐(0)

摘要: 参考: sb-deepseek20250703 1、 package com.ds.aichat.controller;import org.springframework.ai.chat.model.ChatModel;import org.springframework.ai.chat.mode 阅读全文
posted @ 2025-07-13 15:56 2026cn 阅读(29) 评论(0) 推荐(0)

摘要: 参考: sb-deepseek20250703 1、config package com.ds.aichat.config;import org.springframework.ai.chat.client.ChatClient;import org.springframework.context. 阅读全文
posted @ 2025-07-13 13:37 2026cn 阅读(50) 评论(0) 推荐(0)

摘要: 参考: sb-deepseek20250703 1、application.properties spring.application.name=ai-chatserver.port=8899spring.ai.openai.api-key=sk-595b6ce15e1c4a16b1bbae6b8e 阅读全文
posted @ 2025-07-13 02:35 2026cn 阅读(28) 评论(0) 推荐(0)

摘要: 1、deepseek:key 2、springboot调用 1)、pom.xml <properties> <java.version>17</java.version> <spring-ai.version>1.0.0</spring-ai.version></properties><depend 阅读全文
posted @ 2025-07-13 02:15 2026cn 阅读(56) 评论(0) 推荐(0)

2025年7月9日 #

摘要: 1、docker kafka 安装 宿主机:http://192.168.177.128/ #下载镜像 docker pull zookeeper dockerpull wurstmeister/kafka #查看镜像 docker images #启动 zookeeper docker run - 阅读全文
posted @ 2025-07-09 09:29 2026cn 阅读(38) 评论(0) 推荐(0)

2025年7月7日 #

摘要: 阅读全文
posted @ 2025-07-07 09:10 2026cn 阅读(29) 评论(0) 推荐(0)

2025年7月3日 #

摘要: 阅读全文
posted @ 2025-07-03 16:13 2026cn 阅读(29) 评论(0) 推荐(0)

2025年6月27日 #

摘要: 阅读全文
posted @ 2025-06-27 09:26 2026cn 阅读(29) 评论(0) 推荐(0)

2025年6月19日 #

摘要: 阅读全文
posted @ 2025-06-19 08:44 2026cn 阅读(48) 评论(0) 推荐(0)

2025年6月17日 #

摘要: 阅读全文
posted @ 2025-06-17 08:59 2026cn 阅读(29) 评论(0) 推荐(0)

2025年6月16日 #

摘要: 随着生成式 AI 的快速发展,RAG(Retrieval-Augmented Generation,检索增强生成)技术逐渐成为构建智能对话系统的关键。RAG 通过结合检索和生成两种技术,能够生成更准确、更相关的回答。Spring AI 提供了强大的 RAG 支持,其中 QuestionAnswerA 阅读全文
posted @ 2025-06-16 15:50 2026cn 阅读(782) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 ··· 46 下一页