How to fix 404 error ,The requested resource is not available.
viewResolver from dispatcher-servlet.xml
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/" p:suffix=".jsp">
</bean>
@RequestMapping("/Locations/edit/{locationId}")
public void edit(@PathVariable String locationId,ModelMap map) {
Locations location=new Locations();
location=locationsService.getByID(Integer.parseInt(locationId));
map.put("location", location);
}
error HTTP Status 404 - /DoctorsBeta/WEB-INF/Locations/edit/1.jsp description The requested resource is not available.