2020-09-03

tech2024-09-28  17

学习目标:springmvc入门

mvc全名是model view Controller,是模型-视图-控制器的缩写,是一种用于设计创建web应用程序表现层的模式 springmvc是一种基于java的实现mvc设计模型的请求驱动类型的轻量级web框架。

学习内容:基于xml配置

入门案例环境:1.导入springmvc需要的依赖 org.springframework spring-webmvc 5.2.5.RELEASE 2.在web.xml下配置核心控制器 dispatcherServlet org.springframework.web.servlet.DispatcherServlet 3.在根目录下创建springmvc配置文件

<!--配置spring创建容器时要扫描的包--> <context:component-scan base-package="com.zuhu"></context:component-scan> <!--配置视图解析器--> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/pages/"></property> <property name="suffix" value=".jsp"></property> </bean> <!--配置spring开启注解mvc的支持--> <mvc:annotation-driven></mvc:annotation-driven>

4.编写控制器并使用注解配置 @Controller 控制器的注解 public class HelloController { @RequestMapping(path = “/hello”) 该注解用于建立请求url和处理请求方法之间的对应关系 public String sayHello(){ System.out.println(“hello springmvc!”); 在控制台中打印一句话 return “success”; 请求响应后跳转到success页面 } }

学习时间:

20200903

学习产出:

入门案例到此结束哈哈哈

最新回复(0)