-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Package bean sounds wrong for entity objects , Always keep entity objects inside entity package .
- Use @DaTa annotations from
lombok packagefor dynamic getters and setters , won't have to create getters and setters manually for all the parameters in entity classes. - Instead of prepared statements in DAO implementations , you could use JPA (Java persistence API) , it gives more flexibility in terms of querying the db.
- It provides methods such as
findById()where you won't have to write native sql queries explicitly. - Internally JPA uses prepared statements only , so it does the job of creating the corresponding queries for you.
- It provides methods such as
- good job on separating the DB Util class . [nit] => always close the conn object that you open.
- conn object could have been globalized or passed as a reference .
- In jpa , no need to create conn objects , it does the job for us . pasting some links for JPA
- good job on creating custom exceptions .
- put Use cases classes in service layer where all the business logic must reside.
- separate controller , service layer must be present .
- could remove DBUtil from utility into configuration package and initialize the conn objects using dependency injection. Pasting some useful links for dependency injections below.
- functionality is in working condition so that's good.
- Just focus on the aspects that i have mentioned above , you'll be good to go.
- good job on camel casing and meaningful variable names.
- Below site has some small projects with different spring boot concepts in it , do go through once on your own pace.
- https://www.springboottutorial.com/spring-boot-projects-with-code-examples
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels