This is a simple Journal App built using Spring Boot. The application allows users to create, read, update, and delete journal entries.
- Create a new journal entry
- View all journal entries
- Update an existing journal entry
- Delete a journal entry
- Java 11 or higher
- Maven 3.6.0 or higher
- Spring Boot 2.5.4 or higher
git clone https://github.com/yourusername/journalApp.git
cd journalAppmvn clean installmvn spring-boot:runThe application will start on http://localhost:8080.
GET /journal- Get all journal entriesPOST /journal- Create a new journal entryGET /journals/id/{id}- Get a journal entry by IDPUT /journals/{id}- Update a journal entry by IDDELETE /journals/{id}- Delete a journal entry by ID
Contributions are welcome! Please fork the repository and submit a pull request.