全部 <<---当前专栏
参考文档地址: [MCP官网](https://modelcontextprotocol.io/quickstart/server) [Spring官网](https://docs.spring.io/spring-ai/reference/api/mcp/mcp-server-boot-starter-docs.html) > 这是一个基于 Spring AI ...
网站html页面之前是使用的thymeleaf模板引擎, 最近使用了freemarker进行替换. 功能还是很相似的, 类比一下 ![](https://www.majingjing.cn/md/2025-05-04/b642ea2ed0df4e96acd8515b6872bff4.png-majj) #### thymeleaf ##### templates/c...
frp 内网穿透(http/https), windows 版本实验 #### 前提条件 - 一台有公网ip的服务器 > Server: 我自己的公网服务器是linux系统 > Client: 本地是window11 系统 - 添加测试的域名解析 ![](https://www.majingjing.cn/md/2025-05-01/d978fd165e1...
#### 定义文本索引 为简单起见,让我们考虑一个使用以下设置的博客应用程序示例: - 数据库名称:cosmicworks - 集合名称:products 此示例应用程序将文章存储为具有以下结构的文档: ```json { "_id": ObjectId("617a34e7a867530bff1b2346"), "title": "Mongo DB - A...
#### 基本语法 ```shell db.collectionName.createIndex(keys, options) ``` - collectionName:你要在其上创建索引的集合名称。 - keys:一个文档,指定了要索引的字段及其排序顺序(1 表示升序,-1 表示降序)。 - options:可选参数,用于指定索引的其他属性,如唯一性、名称等。 ###...
``` -Dmaven.multiModuleProjectDirectory=$MAVEN_HOME -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true ``` -------...
### 基础查询 | 示例数据 | | ------------------------------------------------------------ | | db.inventory.insertMany([<br/> { item: "journal", qty: ...
springboot:2.7.2 升级java8到java17 报错排查 - 修改java版本到17 ```xml <properties> <java.version>17</java.version> ... </properties> ``` - 执行`mvn clean compile ` , 但是报错如下 ```shell ...