I am currently using Spring and AngularJS.
So far no problem displaying my index.html using Spring like so
@RequestMapping(value="/")
public String index() {
return "/app/index.html";
}
Is there any way I can get my context path in my .html? Or should I render my index as index.jsp?