Skip to content

Releases: Nancheung23/JavaSpringboot-PT1

v2.0.0 Apis prepared

26 May 11:43
22a6638

Choose a tag to compare

v1.0.0-alpha

15 May 13:22

Choose a tag to compare

v1.0.0-alpha Pre-release
Pre-release

Introduction

Initialize Java SpringBoot project, set up routers for:

  1. Users: CRUD, Recipes
  2. Recipes: CRUD, Comments
  3. Comments: CRUD

** Need to enhance routers functionality **

Next Step

  1. Enhance routers
  2. Implement multer, JWT, event handler etc.
  3. Exceptions

Structure

c:/Users/zhang/vscode/JavaSprintboot-PT1/src/
├─ main/
│ ├─ java/
│ │ └─ com/
│ │ └─ foodrecipes/
│ │ └─ webapp/
│ │ ├─ config/
│ │ │ └─ DataLoader.java
│ │ ├─ controller/
│ │ │ ├─ CommentController.java
│ │ │ ├─ DefaultRouter.java
│ │ │ ├─ RecipeController.java
│ │ │ └─ UserController.java
│ │ ├─ dto/
│ │ │ ├─ CommentDTO.java
│ │ │ ├─ RecipeDTO.java
│ │ │ └─ UserDTO.java
│ │ ├─ model/
│ │ │ ├─ Comment.java
│ │ │ ├─ Recipe.java
│ │ │ └─ User.java
│ │ ├─ repository/
│ │ │ ├─ CommentRepository.java
│ │ │ ├─ RecipeRepository.java
│ │ │ └─ UserRepository.java
│ │ ├─ security/
│ │ │ └─ HashingUtility.java
│ │ ├─ service/
│ │ │ ├─ CommentConversionService.java
│ │ │ ├─ RecipeConversionService.java
│ │ │ └─ UserConversionService.java
│ │ └─ WebappApplication.java
│ └─ resources/
│ └─ application.properties
└─ test/
└─ java/
└─ com/
└─ foodrecipes/
└─ webapp/
└─ WebappApplicationTests.java

V1.1.0 - on publish

17 May 10:55
faf8818

Choose a tag to compare

V1.1.0 - on publish Pre-release
Pre-release

Simple function of food recipes website.

Still need a lot to improve.