I'm working on a website using both WaveMaker and Springsource MVC.
The entry generated by WaveMaker is named 'index.html'. I import all browser-side code into the /view directroy of an MVC project. And try to configure ContextLoadListener to map it into an uri. Using:
@RequestMapping(value = "/index", method = RequestMethod.GET)
public String testIndex() {
return "index.html";
}
Then I got the following error testing it:
SEVERE: PWC6117: File "C:\glassfish3\glassfish\domains\domain1\eclipseApps\TribblesDashboard\WEB-INF\views\index.html.jsp" not found
How do I fix it?