I have a UI project structure which uses AngularJS, Bootstrap, and all other 3rd party libraries. Below is the structure:
Here 'ui' is the root folder and 'app' is the immediate child of 'ui'. 'App' has 'app/dependencies' for all 3rd party libraries and 'app/modules' for all application AngularJS modules. 'App/index.html' is the main page of the application where all the modules will be rendered accordingly. Each JavaScript is loaded using 'requirejs' configuration and this whole setup is tested with Grunt/Livereload.
The Requirement is, I would like to place this entire 'ui/app' structure in a SpringBoot appication and serve it from there.
I have tried this but spring boot is always looking into the 'template' and 'static' directory. My directory structure and the relative dependencies in the HTML are not loading.
