赞
踩
学习目标:
1.掌握基于SpringMVC获取请求参数与响应json数据操作
2.熟练应用基于REST风格的请求路径设置与参数传递
3.能够根据实际业务建立前后端开发通信协议并进行实现
4.基于SSM整合技术开发任意业务模块功能
目录
SpringMVC是一种基于java实现MVC模型的轻量级web框架
使用简单,开发快捷
1.导入SpringMVC坐标与Servlet坐标,tomcat7插件
<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.10.RELEASE</version> </dependency> <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <configuration> <port>80</port> <path>/</path> </configuration> </plugin> </plugins> </build>
2.创建SpringMVC控制类(等同于Servlet功能)
- //定义表现层控制器bean
- @Cont
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。