This repository was archived by the owner on Apr 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Modularizing the Project #74
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Synopsis
Currently, we only support the 2.x.x versions of Spring Boot. Supporting multiple versions of Spring Boot in a single codebase seems complicated, since each major release may introduce conflicting and backward-incompatible changes.
Motivation
With a few simple changes, we should be able to support the 1.5.x but I couldn't find a way to pull this off, yet! Also, supporting future versions may get as complicated.
Recommended Solution
One solution is to modularize (not to be confused with JPMS) the project. That is, we can create:
- A Core Module containing the basic and version agnostic abstractions like
WebErrorHandler,FingerPrintProviderorHttpError. - One dedicated module for each Spring Boot version, e.g.
1.x.x,2.x.x, etc.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request