I have a simple spring boot application which is just a simple submit html form. I have a requirement to split this into two modules or create another module for this application. Basically I need two different spring boot application which will be merged in the during the final stage.
Example: Main module (index.html) and then sub module (another spring boot application) both will have their own
unit tests and code coverage and
jenkins will checkout both modules and create the main application.
Here is the first part of the app that I've completed.
https://jsfiddle.net/57xaknv8
Any suggestions on what I can do to split this into two different spring boot application or create something new for this module? I need to present this application but I'm not sure how I can split or what can created which can view separately and tested separately but also can be merged during the final stage.