SpringMVC写第一个程序HelloSpringMVC
SpringMVC也就是把我们之前的MVC架构用Spring封装了一下,其核心在Controller,首先我们实现springframework提供的Controller接口写一个HelloController类,重写handleRequest方法,也就是处理请求的意思,里面有两个参数,分别是request和response,其实其本质还是Servlet,只是进行了封装这是目录结构首先...