本文主要是介绍cgb2106-day14,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 一,SpringMVC解析restful的请求参数
- --1,概述
- --2,测试
- 创建RunApp启动类
- 创建CarController类
- 创建前端网页文件
- 测试
- 二,SpringMVC解析post的请求参数
- --0,项目结构
- --1,准备form表单
- --2,准备Student类
- --3,准备StudentController类
- --4,利用jdbc把接受到的参数入库
- 操作cgb2106的库, 创建tb_student表(参考Student类)
- 修改pom.xml文件,添加jdbc的jar包的坐标
- 写jdbc的代码
- --5,测试
- --6,总结
- 三,Git
- --1,概述
- --2,常用命令
- --3,使用步骤
- --4,检查
- --5,日常操作
一,SpringMVC解析restful的请求参数
–1,概述
简化了get方式参数的写法
普通的get传递的参数 http://localhost:8080/car/get?id=100&name=张三
restful传递的参数 http://localhost:8080/car/get2/100/张三
–2,测试
创建RunApp启动类
package cn.tedu;import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;//位置:必须在所有资源之上的包里
@SpringBootApplication
public class RunApp {public static void main(String[] args) {SpringApplication.run(RunApp.class);}
}
创建CarController类
package cn.tedu.controller;import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
//@Controller
//@ResponseBody
@RestController
@RequestMapping("car")
public class CarController {//注意1:: 参数列表里的参数类型,最好使用引用类型,//如果浏览器没有传值过来就用默认值,但使用基本类型会抛异常的//解析普通的get传递的参数//http://localhost:8080/car/get?id=100&name=张三@RequestMapping("get")
// public String get(int id,String name){public String get(Integer id,String name){return id+name ;}//解析restful传递的参数:简化了get方式参数的写法//http://localhost:8080/car/get2/100/张三@RequestMapping("get2/{id}/{name}")//{x}--通过{}获取访问路径中携带的参数,并且交给变量x保存//@PathVariable -- 获取{}中间变量的值public String get2(@PathVariable Integer id,@PathVariable String name){return id+name;}//http://localhost:8080/car/get3/100/张三/red/9.9@RequestMapping("get3/{a}/{b}/{c}/{d}")public String get3(@PathVariable Integer a,@PathVariable String b,@PathVariable String c,@PathVariable double d){return a+b+c+d ;}}
创建前端网页文件
<!DOCTYPE html>
<html><head><meta charset="utf-8"><title></title></head><body><a href="http://localhost:8080/car/get?id=100&name=张三">解析get的参数 </a><a href="http://localhost:8080/car/get2/100/张三">解析restful风格的参数</a>
<a href="http://localhost:8080/car/get3/100/张三/red/9.9">练习解析restful风格的参数</a></body>
</html>
测试
二,SpringMVC解析post的请求参数
–0,项目结构
–1,准备form表单
<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>
这篇关于cgb2106-day14的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!