From ff90b9b699e58c1cd4fc60cda66c8ebf73365331 Mon Sep 17 00:00:00 2001 From: Jesus Navalon Date: Sat, 11 Jul 2026 16:46:22 +0200 Subject: [PATCH] Initialize Spring Boot project with basic structure and configuration --- .gitignore | 6 ++ pom.xml | 58 +++++++++++++++++++ .../ProductAffinityApplication.java | 12 ++++ src/main/resources/application.yml | 0 4 files changed, 76 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml create mode 100644 src/main/java/com/example/productaffinity/ProductAffinityApplication.java create mode 100644 src/main/resources/application.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b13f319 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +target/ +*.class +.idea/ +*.iml +.vscode/ +.DS_Store diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..614f1df --- /dev/null +++ b/pom.xml @@ -0,0 +1,58 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 3.5.3 + + + + com.example + product-affinity + 1.0.0 + product-affinity + + + 21 + + + + + org.springframework.boot + spring-boot-starter-webflux + + + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + properties + + + + + + + diff --git a/src/main/java/com/example/productaffinity/ProductAffinityApplication.java b/src/main/java/com/example/productaffinity/ProductAffinityApplication.java new file mode 100644 index 0000000..6bd9b59 --- /dev/null +++ b/src/main/java/com/example/productaffinity/ProductAffinityApplication.java @@ -0,0 +1,12 @@ +package com.example.productaffinity; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class ProductAffinityApplication { + + public static void main(String[] args) { + SpringApplication.run(ProductAffinityApplication.class, args); + } +} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..e69de29