The Spring Boot OAuth2 authserver
sample app at this link uses FreeMarker templates for its views, which include login
, and authorize
. The main application class for the app is at this link.
What specific changes need to be made to the code in the authserver
app in order for the login
and authorize
views to be served in AngularJS INSTEAD OF FreeMarker?
Would the rigidly-defined server-side processing in this particular app require that two separate Angular single page applications be created, one for each view? Or could one AngularJS app handle both the login
and authorize
views, plus other views that might be added later? How would this get set up?