Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 875 Bytes

File metadata and controls

17 lines (13 loc) · 875 Bytes

Spring, JPA with Hibernate

This quickstart project is to demonstrate upgraded verisons of spring 5.2.x, hibernate 5.4.x.

This project will make one or more branches to showcase different variations. Current variations envisioned:

  1. main branch - use the current configuration as much as possible but with just updated jars

  2. spring-orm branch - 'main' branch + add spring-orm to demonstrate it’s usefulness

  3. java-config branch - 'main' branch + change the configuration of spring and hibernate to java-based configuration

  4. auth branch - 'main' + add the bare minimum of classes from original code to have the authorization working

    1. AuthenticationDispatcher

    2. UserBean

    3. Security Filters e.g. AuthenticationFilter

  5. container-auth branch - 'auth' branch + container-based authentication

    1. entry point takes a Principal object

    2. need to accommodate the