Skip to content

QQ机器人的spring boot starter,推荐基于这个进行快速开发。本项目使用MIT协议,如果Client选择Mirai请使用AGPLv3协议。

License

Notifications You must be signed in to change notification settings

ProtobufBot/pbbot-spring-boot-starter

Repository files navigation

Pbbot-Spring-Boot-Starter

QQ群

这是一个spring boot starter,可以用于快速开发对应于 Go-Mirai-ClientpbrqSpring-Mirai-Client 的消息处理中心。

仅用于编写业务逻辑,不涉及登陆等功能,建议配合pbrq使用,下载地址:pbrq-Release

文档:https://blog.lz1998.net/blogs/bot/2020/pbbot-doc/

例子:https://github.com/ProtobufBot/Spring-Mirai-Server

使用方法

  • pom.xml
    <dependency>
        <groupId>net.lz1998</groupId>
        <artifactId>pbbot-spring-boot-starter</artifactId>
        <version>0.0.38</version>
    </dependency>

最新版:maven

  • HelloPlugin
package com.example.demo.plugin;

import net.lz1998.pbbot.bot.Bot;
import net.lz1998.pbbot.bot.BotPlugin;
import net.lz1998.pbbot.utils.Msg;
import onebot.OnebotEvent;
import org.jetbrains.annotations.NotNull;
import org.springframework.stereotype.Component;


@Component
public class HelloPlugin extends BotPlugin {
    @Override
    public int onPrivateMessage(@NotNull Bot bot, @NotNull OnebotEvent.PrivateMessageEvent event) {
        Msg msg = Msg.builder()
                .text("123")
                .face(1);
        bot.sendPrivateMsg(event.getUserId(), msg.build(), false);
        return super.onPrivateMessage(bot, event);
    }
}
  • application.yml
spring:
  bot:
    plugin-list: 
      - com.example.demo.plugin.HelloPlugin
server:
  port: 8081

About

QQ机器人的spring boot starter,推荐基于这个进行快速开发。本项目使用MIT协议,如果Client选择Mirai请使用AGPLv3协议。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages