I got a simple idea around an automated issue agent and I would like to put it into the real world. It should be a ChatBot application that will get requests sent by another application (say Rest HTTP requests) and that will either respond with a message, or redirect the request to another system (should be another Rest HTTP call as well). Can anybody recommend a library or framework that can offer alike features (preferably a JavaScript or Java one)? I am looking for the most straightforward library for the moment but am certainly open to any suggestion, even a more sophisticated one.

Marouane Trabelsi
Software Engineer at Veamly Inc.
4 upvotes·6.8K views
I use Spring-Boot because it almost let you get things done quickly for a JVM-target project, with auto configuration components and dependency management starters. It is almost perfectly tailored for microservices applications development with a single unit deployment artifact (JAR) along with support for Service Registry and Discovery, Circuit Breaker pattern...
Any third-party library or any back-end service would perfectly integrate well since Spring offers integration support for most of mainstream services, let it be a RDBMS service, a NoSQL database, a Message Broker...
Coming to day-to-day development, Spring-Boot enjoys a great community so you can get support, direction, focused guidance from almost everywhere.
3 upvotes·45.5K views


