Version | Number | Status |
---|---|---|
Spring Bot | ||
Symphony Java Toolkit |
Spring Bot is a set of Spring Boot starters designed for building chat bots in Java & Kotlin.
π§π½βπ€βπ§π½ Multiple Platforms
Like it or not, most of us find ourselves working in environments with multiple chat platforms. As bot developers, we need to be able to reach users irrespective of which platform they are on.
β Work at a higher level
Developers of chat-bots are not well-supported with Open-Source tooling. Too much effort gets spent on low-level message-handling, which could easily be done by a library.
π Avoid Lock-In
Most bot development tools are commercial. If you build bots with them you are locked into paying license fees forever. For example, the Microsoft Bot Framework support multiple chat platforms at the expense of locking you into the Azure ecosystem.
This is best described at springbot.finos.org. This takes you through the process of building several example bots from scratch.
By using Spring Bot's abstractions, you can target both Symphony and Microsoft Teams. Depending on demand (or contributions) further platforms may be supported in the future. In the tutorials we show how to build a claim processing bot which runs a workflow concurrently on Teams and Symphony.
Spring Bot handles marshalling from/to the underlying message formats on your platform.
Templates are automatically generated for any Java objects (POJOs) that you want to send to the chat platform. This allows users to read/edit objects and send them back to your bot. Additionally, templates are fully customizable on a per-platform basis, currently using Freemarker and Thymeleaf.
As the tutorials show, you just drop a few annotations into your application to enable it to read and send chat messages.
By building bots in a mature ecosystem like Java, you avoid all of the usual issues with no-code and low-code environments. Java is a mature language with every conceivable library, a wealth of Stack-Overflow QA's and a convincing DevOps/Deployment story (Java runs anywhere).
Most low-code / no-code platforms are a trap: they are looking to lock-in customers and revenue streams by persuading you to build your business with them as a dependency. Spring Bot is open-source so this is literally a non-issue.
This project contains various example bots that were (originally) written at Deutsche Bank in response to real use-cases. However, we felt they were general enough to warrant Open-Sourcing and including as code to work from.
π All of these bots work on Microsoft Teams and Symphony, and are deployed into maven central as executable jars.
A bot for running polls in a Symphony chat room. π Production Ready
A bot for feeding news into a Symphony chat room. π Production Ready
Reads the contents of a room and creates reminders based on future events mentioned therein. π Production Ready
Inside the /demos
directory you can see three example bots:
demo-bot
: The "Hello World" of Spring Bot todo-bot
: Runs a simple todo-list inside a chat room on Teams or Symphony.claim-bot
: An example of an expense-claim workflow running across Teams and Symphony concurrently.Tutorials for building these and the reference guide are found here: Spring Bot
Copyright 2022 FINOS
Distributed under the Apache License, Version 2.0.
SPDX-License-Identifier: Apache-2.0
If you uncover vulnerabilities in this software, please contact help@finos.org
privately
There are two main branches:
spring-bot-master
: new code for the multi-platform Symphony / Microsoft Teams bot buildersymphony-java-toolkit-master
: legacy code for when this project only supported symphony.In order to do a release:
# on spring-bot-master branch
mvn clean test -P symphony-ci
mvn versions:set -DnewVersion=<our breaking change no>.<minor version no>.<our-patch-version-no> -DartifactId=\* -DgroupId=\*
mvn -DskipTests clean test source:jar javadoc:javadoc deploy -P symphony-release
mvn versions:set -DnewVersion=<our breaking change no>.<symphony-api-version>.<our-release-no+1>-SNAPSHOT -DartifactId=\* -DgroupId=\*
# then push to git (spring-bot-develop branch)
oss.sonatype.org