Welcome to the Spring Boot Bootcamp Exercises repository! This repo contains my daily Java and Spring Boot projects as part of my learning journey. Each day is organized as a standalone project/folder for easy navigation and execution.
This repository is a collection of hands-on exercises and mini-projects completed during my Spring Boot bootcamp. Each folder under the root directory represents a separate day's work, ranging from basic Java programs to full-fledged Spring Boot applications.
spring-boot-bootcamp/
day-01/
src/
pom.xml (if Spring Boot)
...
day-02/
src/
...
...
- Each
day-XX/folder is a self-contained Java or Spring Boot project. src/contains the source code for that day's exercises.pom.xmlorbuild.gradle(if present) means it's a Spring Boot project.
- Clone the repository:
git clone https://github.com/Fkhrayef/spring-boot-bootcamp.git cd spring-boot-bootcamp - Navigate to the desired day:
cd day-02 - Run the project:
- For plain Java:
- Open in your IDE and run the main class, or
- Compile and run with:
javac src/*.java java -cp src MainClassName
- For Spring Boot:
- With Maven:
mvn spring-boot:run
- With Gradle:
./gradlew bootRun
- With Maven:
- For plain Java:
For questions or feedback, feel free to open an issue or reach out via GitHub Issues.
Happy coding! 🎉