Looking for a Lightweight Java Library for Domain Services

0
8
Asked By CreativeCoder24 On

I'm on the hunt for a lightweight, Java-based library, preferably using Spring, that can serve as a bootstrap or template for new domain services like accounting ledgers, payments, and bulk notifications. I'm looking for something similar to JHipster, but more focused on domain and business logic. If you have any recommendations, that would be great!

2 Answers

Answered By TechieGuru88 On

You should definitely check out Spring Initializr at start.spring.io. It's a great tool for kickstarting a Spring project and lets you customize your setup to get going quickly!

Answered By DevExplorer77 On

Depending on your needs, you might want to explore options like Javalin, Helidon, or Micronaut. These frameworks can be versatile depending on what you're planning to build. Check them out: Javalin (javalin.io), Helidon (helidon.io), and Micronaut (micronaut.io).

CreativeCoder24 -

I appreciate those suggestions! However, what I'm really looking for is a complete project or library that comes with domain modules. Ideally, it would include a basic SQL model, entities, and pre-built controllers along with sample implementations for workflows. I'd love to streamline the development process by using a repo that already has core CRUD functionality set up.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.