springboot @requestmapping,requestmapping获取参数
目录
Getmapping如何获取参数其他传递参数的方式都在此之外@GetMapping参数接收和理解什么时候参数是基本类型,什么时候参数是数组,什么时候参数是简单对象,什么时候对象嵌套在参数的对象中。
00-1010 spring boot中的Getmapping使用PathVariable、HttpServletRequest和RequestParam获取参数。
今天学习Springboot遇到一个问题,放了一段代码。
@ get mapping(value=/Student/log in/{ new pwd } )public Map Student log in(@ path variable( new pwd )String new pwd,Student stu){ system . out . println( pwd : new pwd);string RES=service . student log in(stu . get username()、stu . get pswd());system . out . println(RES);map map=new HashMap();map.put(result ,RES);返回地图;代码中的Student是一个业务实体,service.studentLogin是服务层中的一个方法。
乍一看,没有问题。接口测试工具用于测试返回的结果,这里只设置true和false。
but!
此处出现404,表示找不到对应的页面。
我严格遵循了各种在线教程中的程序。为什么会出现404?
咨询了群里的大佬,发现问题出现在一个小?上面的
我们将链接以下内容?摆脱
http://localhost :8080/student/log in/?newpwd=77777
变成这样
http://localhost :8080/student/log in/new pwd=77777
404的问题已经不存在了,控制台也打印出了我们需要的参数值。当然,新的错误是下面的逻辑错误(我没有输入其他需要的参数)。
00-1010除了PathVariable,还有一个方法是RequestParam。下面是具体代码。
@ get mapping(value=/Student/log in )public Map Student log in(@ request param( new pwd )String new pwd,Student stu){ system . out . println( pwd : new pwd);string RES=service . student log in(stu . get username()、stu . get pswd());system . out . println(RES);map map=new HashMap();map.put(result ,RES);返回地图;}为了看得更清楚,我将服务代码:
public String student log in(String userName,String pswd){ String isUser= false ;student s=properties . findbysusername(用户名);if(s.getPswd()。equals(pswd))is user= true ;返回isUser}这样,即使不指定要传入的参数,我们也可以自己传入任何参数。如果没有来自业务实体外部的参数,我们只需要申请一个实体对象来接受url传递的参数。
上面的代码执行结果
可以看到,实体内部和外部的参数都被传递到方法中。
00-1010也是
有HttpServletRequest可以接受参数,为此我写了一个测试方法
@GetMapping(value="/student/findById") public void findById(HttpServletRequest req){ String s=req.getParameter("id"); }
不过这样的方法需要指定url中值得名称,就是所谓的 键值对
运行结果:
@GetMapping参数接收理解
当参数为基本类型时
@GetMapping("/example1")public void example1(Float money, String product){ System.out.println("product:"+ product);//product:洗洁精 System.out.println("money:"+ money);//money:123.0}//请求url:http://localhost:8888/example1?money=123&product=洗洁精
当参数为数组时
@GetMapping("/example2") public void example2(String[] keywords){ if (keywords != null){ for (int i=0; i<keywords.length; i++){ System.out.println(keywords[i]);//123 456 } } } //请求url:http://localhost:8888/example2?keywords=123,456
当参数为简单对象时
@GetMapping("/example3") public void example3(SubTest1 subTest1){ System.out.println(subTest1);//SubTest1{content=测试内容} } //请求url:http://localhost:8888/example3?content=测试内容public class SubTest1 { private String content; public String getContent() { return content; } public void setContent(String content) { this.content = content; } @Override public String toString() { return "SubTest1{" + "content=" + content + + }; }}
当参数的对象中嵌套着对象
对象中的属性为list和map时
@GetMapping("/example4") public void example4(TestDto testDto){ System.out.println(testDto);//TestDto{title=测试标题, subTest=SubTest{ids=[123, 456], map={k=value}}, subTest1=SubTest1{content=测试内容}} } //请求url:http://localhost:8888/example4?title=测试标题&subTest.ids[0]=123&subTest.ids[1]=456&subTest.map[k]=value&SubTest1.content=测试内容public class TestDto { private String title; private SubTest subTest; private SubTest1 subTest1; public SubTest1 getSubTest1() { return subTest1; } public void setSubTest1(SubTest1 subTest1) { this.subTest1 = subTest1; } @Override public String toString() { return "TestDto{" + "title=" + title + + ", subTest=" + subTest + ", subTest1=" + subTest1 + }; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public SubTest getSubTest() { return subTest; } public void setSubTest(SubTest subTest) { this.subTest = subTest; }}public class SubTest { private List<Long> ids; private Map map; public Map getMap() { return map; } public void setMap(Map map) { this.map = map; } public List<Long> getIds() { return ids; } public void setIds(List<Long> ids) { this.ids = ids; } @Override public String toString() { return "SubTest{" + "ids=" + ids + ", map=" + map + }; }}
//TODO:在直接用list作为参数的时候,程序会报错的;直接用map作为参数的时候,没办法获取到值,都是null,但是不会报错;不知道是姿势错误,还是本身不支持
以上为个人经验,希望能给大家一个参考,也希望大家多多支持盛行IT。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。