使用 Spring Boot
安装
准备Java
我们推荐您使用 Spring Boot 3.x。因此 Java 的版本至少为 Java17。
准备 Spring Boot 项目
前往 start.spring.io 选择、创建一个 Spring Boot 项目下载。 当然,你也可以选择其他任意可行方式来创建项目,例如借助IDE。
更多参考:
添加 simbot starter 依赖
使用 Spring Boot 3,确保项目的JDK版本大于等于 JDK17。
implementation("love.forte.simbot:simbot-core-spring-boot-starter:4.7.0")implementation 'love.forte.simbot:simbot-core-spring-boot-starter:4.7.0'<dependency> <groupId>love.forte.simbot</groupId> <artifactId>simbot-core-spring-boot-starter</artifactId> <version>4.7.0</version> </dependency>implementation("love.forte.simbot:simbot-core-spring-boot-starter-v2:4.7.0")implementation 'love.forte.simbot:simbot-core-spring-boot-starter-v2:4.7.0'<dependency> <groupId>love.forte.simbot</groupId> <artifactId>simbot-core-spring-boot-starter-v2</artifactId> <version>4.7.0</version> </dependency>添加组件及其要求的其他内容
simbot的组件是功能的主要提供者,是重要的核心概念之一。 你可以前往 概述 选择你所需要的组件并添加它们,而它们的手册通常都会有各自相应的快速开始或安装章节。
大部分官方组件都会需要你添加 Ktor 引擎,注意观察阅读、不要漏掉喔~
你也可以使用任何可用的第三方组件,并参照它们各自的文档说明进行安装。
使用
启用 simbot
前往 启用 simbot 了解更多。
编写事件处理器
前往 编写事件处理器 了解更多。
安装组件以及组件配置
前往 安装组件以及组件配置 了解更多。
注册Bot
前往 注册Bot 了解更多。
运行或打包
前往 运行或打包 了解更多。
Last modified: 15 November 2024