Science Score: 31.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (6.7%) to scientific vocabulary
Last synced: 11 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: coundia
  • Language: Java
  • Default Branch: main
  • Size: 272 KB
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed over 1 year ago
Metadata Files
Readme Citation

README.md

spring-axon-rabbitmq-webflux-starter

This project is a Spring Boot application using Axon Framework, RabbitMQ, and PostgreSQL, following * DDD* (Domain-Driven Design) and CQRS (Command Query Responsibility Segregation) principles.

📥 Clone the Project

sh git clone https://github.com/coundia/spring-axon-rabbitmq-webflux-starter cd spring-axon-rabbitmq-webflux-starter

📌 Prerequisites

Before running the application, make sure you have installed:

🚀 Installation and Execution

1️⃣ Start PostgreSQL and RabbitMQ

Run the following command to start the Docker containers:

sh docker compose -f docker/main.yml up -d

2️⃣ Run Tests

sh mvn spring-boot:test-run

3️⃣ Start the Spring Boot Application

sh mvn spring-boot:run

📡 API Documentation

Once the application is running, you can access the Swagger UI documentation here:

http://127.0.0.1:8090/webjars/swagger-ui/index.html

📁 Project Structure

```


❰pcoundia❙~/projects/spring-axon-rabbitmq-webflux-starter(git✱✱➜main)❱✘≻ tree -L 7 src/ src/ ├── main │   ├── java │   │   └── com │   │   ├── generated │   │   └── pcoundia │   │   ├── ProductCommandApplication.java │   │   ├── products │   │   │   ├── application │   │   │   │   ├── Mapper │   │   │   │   ├── command │   │   │   │   ├── dto │   │   │   │   ├── event │   │   │   │   ├── projections │   │   │   │   ├── query │   │   │   │   └── queryHandler │   │   │   ├── domain │   │   │   │   ├── aggregate │   │   │   │   ├── exception │   │   │   │   ├── useCase │   │   │   │   └── valueObject │   │   │   ├── infrastructure │   │   │   │   ├── entity │   │   │   │   └── repository │   │   │   └── presentation │   │   │   └── controller │   │   └── shared │   │   ├── Presentation │   │   │   └── StatusController.java │   │   └── infrastructure │   │   ├── axon │   │   ├── config │   │   ├── exception │   │   ├── mongodb │   │   ├── rabbitMq │   │   └── security │   └── resources │   ├── application-test.properties │   ├── application.properties │   ├── schema-axon.sql │   └── schema-domain.sql └── test └── java └── com └── pcoundia ├── ProductCommandApplicationTests.java ├── infrastructure │   └── controller │   ├── AddProductControllerTest.java │   ├── DeleteProductControllerTest.java │   ├── StatusControllerTest.java │   └── UpdateProductNameProductControllerTests.java └── shared ├── BaseIntegrationTests.java └── BaseUnitTests.java

42 directories, 13 files

```

🚀 API Documentation Swagger UI

api.png

🔹 Notes

  • The application follows the CQRS pattern, separating command and query models.
  • RabbitMQ is used as a message broker for event-driven communication.
  • PostgreSQL is the primary database.

📜 License

CC-BY-NC-SA-4.0

Owner

  • Name: coundia
  • Login: coundia
  • Kind: user
  • Location: DAKAR
  • Company: Devalto

Full Stack Developer Java/Php/Js #Love Figma

Citation (CITATION.cff)

# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: software
message: >-
  If you use this software, please cite it using the
  metadata from this file.
type: software
authors:
  - given-names: Papa
    family-names: Coundia
    name-particle: Papa
    email: papacoundia@gmail.com
license: CC-BY-NC-SA-4.0

GitHub Events

Total
  • Watch event: 1
  • Push event: 2
  • Create event: 1
Last Year
  • Watch event: 1
  • Push event: 2
  • Create event: 1

Committers

Last synced: about 1 year ago

All Time
  • Total Commits: 5
  • Total Committers: 1
  • Avg Commits per committer: 5.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 5
  • Committers: 1
  • Avg Commits per committer: 5.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
pcoundia p****a@g****m 5

Issues and Pull Requests

Last synced: about 1 year ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

pom.xml maven
  • org.projectlombok:lombok provided
  • com.h2database:h2
  • com.zaxxer:HikariCP 5.0.1
  • org.axonframework.extensions.amqp:axon-amqp-spring-boot-starter
  • org.axonframework:axon-spring-boot-starter 4.11.1
  • org.postgresql:postgresql 42.7.5
  • org.postgresql:r2dbc-postgresql
  • org.springdoc:springdoc-openapi-starter-webflux-ui 2.3.0
  • org.springframework.boot:spring-boot-starter-actuator
  • org.springframework.boot:spring-boot-starter-amqp
  • org.springframework.boot:spring-boot-starter-aop
  • org.springframework.boot:spring-boot-starter-data-r2dbc
  • org.springframework.boot:spring-boot-starter-security
  • org.springframework.boot:spring-boot-starter-webflux
  • org.springframework.cloud:spring-cloud-starter-config 4.2.1
  • org.springframework.cloud:spring-cloud-starter-netflix-eureka-client 4.2.1
  • io.projectreactor:reactor-test test
  • io.r2dbc:r2dbc-h2 test
  • org.springframework.boot:spring-boot-starter-test test