Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.96 KB

spring-boot.md

File metadata and controls

37 lines (29 loc) · 1.96 KB

Requirements

  • Java
  • Object Oriented Programming
  • Basic Knowledge of Build Tool (Maven or Gradle)

Websites

Tutorials

Need to Know

  • You can use Spring Boot as only REST API backend or fullstack frontEnd with JSP.
  • For using only as backend, you need to know how to configure Jackson (JSON De/Serializer), Security and CROS
  • Spring Has diffrent Modules - Core, Security, Data, Web
  • You can not use Spring JPA Hibernate for CSE215 course, use JDBC
  • You can indeed use spring data jpa. There is options for native query to database.

Basic project structure of a spring boot project:

Project dir
       - Controller
       - Sevice
              - Service interface
              - Service implementation
       - Repository
       - Utils
       - Config
       - Security