Skip to content

Java Library for Developing Reactive Backend Systems with Keycloak Authentication, Minio Storage, OAuth2 Security, Caching, and Trace Logging Integration ...

License

Notifications You must be signed in to change notification settings

hoangtien2k3/reactify

Repository files navigation

Reactify a commons Java lib with spring boot framework, Supports using keycloak, filter, trace log, cached, minio server, exception handler, validate and call API with webclient

This README provides quickstart instructions on running reactify on bare metal project spring boot.

SonarCloud

CircleCI Quality Gate Status Lines of Code GitHub Release License OpenSSF Best Practices Build status

Download

Gradle is the only supported build configuration, so just add the dependency to your project build.gradle file:

⬇️ Download Gradle and Maven

dependencies {
  implementation 'io.github.hoangtien2k3:reactify:$latest'
}
<dependency>
   <groupId>io.github.hoangtien2k3</groupId>
   <artifactId>reactify</artifactId>
   <version>${latest}</version>
</dependency>

The latest reactify version is: GitHub Release

The latest stable lib reactify version is: latestVersion Click here for more information on reactify.

Getting Started

  1. Correct and complete setup to start the program application.yml or application.properties with CONFIG

  2. The reference documentation includes detailed installation instructions as well as a comprehensive getting started guide.

Here is a quick teaser of a complete Spring Boot application in Java:

@SpringBootApplication
@ComponentScan(basePackages = {
        "io.hoangtien2k3.reactify.*",
        "com.example.myproject"
})
public class Example {

    @RequestMapping("/")
    String home() {
        return "Hello World!";
    }

    public static void main(String[] args) {
        SpringApplication.run(Example.class, args);
    }
}

Contributing

If you would like to contribute to the development of this project, please follow our contribution guidelines.

Alt

Star History

Star History Chart

Contributors ✨

License

This project is licensed under the Apache License, Version 2.0

Apache License
Copyright (c) 2024 Hoàng Anh Tiến

Lead to This Project 🌈


Hoàng Anh Tiến

💻 🚧 🤔 🎨 🐛