控制器是mvc模式中很是重要的部分。 Spring中org.springframework.web.portlet.mvc 包有10種controller : Spring中org.springframework.web.servlet.mvc包有13種controller : 一 :Controller接口 Spring中最基本的是org.springframework.mvc.Controller接口。public interface Controller { ModelAndView handleRequest( HttpServletRequest request, HttpServletResponse response) throws Exception; } 這個接口很是的簡單,只有一個能夠返回適當Model和View的請求處理方法。除了這個接口Spring還提供了一些