You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Project Name: sample
tried a bunch of things including restarts, updating maven,...
In DispatcherServlet.xml
<mvc:resources mapping="/webjars/**" location="/webjars/" />
PersonController.java has @RequestMapping(value = "/person/searchPerson", method=RequestMethod.GET)
public ModelAndView searchPerson() {
ModelAndView mv = new ModelAndView("/person/searchPerson","person", new Person());
return mv;
}
Bootstrap is not working for me.
The browser is trying to find the css at - not sure if this is right
http://localhost:8080/sample/person/webjars/bootstrap/3.3.6/css/bootstrap.min.css
Project Name: sample
tried a bunch of things including restarts, updating maven,...
In DispatcherServlet.xml
<mvc:resources mapping="/webjars/**" location="/webjars/" />
PersonController.java has
@RequestMapping(value = "/person/searchPerson", method=RequestMethod.GET)
public ModelAndView searchPerson() {
ModelAndView mv = new ModelAndView("/person/searchPerson","person", new Person());
return mv;
}
in JSP
in pom.xml
The text was updated successfully, but these errors were encountered: