I want to add angular component into JSP page, what are the possible ways ?
To Describe more :
I have one application dynamic web application in JSP and another
Another way I was able to do it, by building the angular component with command:
ng build
This will generate JavaScript files will be created in dist folder of your angular project.
Then just include the files from the dist folder into your JSP application and use angular component directly.