一.Controller
1 public class MultiController extends MultiActionController { 2 3 public ModelAndView add(HttpServletRequest request,HttpServletResponse response){ 4 System.out.println("add"); 5 String data = "add"; 6 return new ModelAndView("/index","data",data); 7 } 8 9 public ModelAndView update(HttpServletRequest request,HttpServletResponse response){10 System.out.println("update");11 String data = "update";12 return new ModelAndView("/index","data",data);13 }14 15 }
二.spring-servlet.xml
1 212 13 14 15 16 17 18 20 2119 22 24 25 26 27 2823 29 30 31
三.web.xml
12 10spring 3org.springframework.web.servlet.DispatcherServlet 45 8contextConfigLocation 6classpath:/springmvc/spring-servlet.xml 71 911 14spring 12/ 13
访问路径