浅谈SpringBoot处理url中的参数的注解

浅谈SpringBoot处理url中的参数的注解,第1张

概述1.介绍几种如何处理url中的参数注解@PathVaribale获取url中的数据@RequestParam获取请求参数的值

1.介绍几种如何处理url中的参数的注解

@PathVaribale 获取url中的数据

@RequestParam 获取请求参数的值

@GetMapPing 组合注解,是 @RequestMapPing(method = RequestMethod.GET) 的缩写

(1)PathVaribale 获取url中的数据

看一个例子,如果我们需要获取Url=localhost:8080/hello/ID中的ID值,实现代码如下:

@RestControllerpublic class HelloController { @RequestMapPing(value="/hello/{ID}/{name}",method= RequestMethod.GET) public String sayHello(@PathVariable("ID") Integer ID,@PathVariable("name") String name){ return "ID:"+ID+" name:"+name; }}

在浏览器中 输入地址: localhost:8080/hello/100/helloworld 然后会在HTML页面上打印出:

ID:81

同样,如果我们需要在url有多个参数需要获取,则如下代码所示来做就可以了。

@RestControllerpublic class HelloController { @RequestMapPing(value="/hello/{ID}/{name}",@PathVariable("name") String name){ return "ID:"+ID+" name:"+name; }}

在浏览器中输入地址: localhost:8080/hello/100/helloworld 然后会在HTML页面上打印出:

ID:100 name:helloworld

以上,通过 @PathVariable 注解来获取URL中的参数时的前提条件是我们知道url的格式时怎么样的。

只有知道url的格式,我们才能在指定的方法上通过相同的格式获取相应位置的参数值。

一般情况下,url的格式为: localhost:8080/hello?ID=98,这种情况下该如何来获取其ID值呢,这就需要借助于 @RequestParam 来完成了

2.@RequestParam 获取请求参数的值

例如:

@RestControllerpublic class HelloController { @RequestMapPing(value="/hello",method= RequestMethod.GET) public String sayHello(@RequestParam("ID") Integer ID){ return "ID:"+ID; }}

在浏览器中输入地址: localhost:8080/hello?ID=1000 ,可以看到如下的结果:

ID:1000

当我们在浏览器中输入地址: localhost:8080/hello?ID,即不输入ID的具体值,此时返回的结果为null。具体测试结果如下:

ID:null

但是,当我们在浏览器中输入地址: localhost:8080/hello,即不输入ID参数,则会报如下错误:

whitelable Error Page错误

@RequestParam 注解给我们提供了这种解决方案,即允许用户不输入ID时,使用默认值,具体代码如下:

@RestControllerpublic class HelloController { @RequestMapPing(value="/hello",method= RequestMethod.GET) //required=false 表示url中可以不穿入ID参数,此时就使用默认参数 public String sayHello(@RequestParam(value="ID",required = false,defaultValue = "1") Integer ID){ return "ID:"+ID; }}

如果在url中有多个参数,即类似于 localhost:8080/hello?ID=98&&name=helloworld 这样的url,同样可以这样来处理。具体代码如下:

@RestControllerpublic class HelloController { @RequestMapPing(value="/hello",method= RequestMethod.GET) public String sayHello(@RequestParam("ID") Integer ID,@RequestParam("name") String name){ return "ID:"+ID+ " name:"+name; }}

在浏览器中的测试结果如下: localhost:8080/hello?ID=1000&name=helloworld 地址,就会显示下面的内容:

ID:1000 name:helloworld

3.@GetMapPing 组合注解

@GetMapPing 是一个组合注解,是 @RequestMapPing(method = RequestMethod.GET) 的缩写。该注解将http Get 映射到 特定的处理方法上。

即可以使用 @GetMapPing(value = “/hello”) 来代替 @RequestMapPing(value=”/hello”,method= RequestMethod.GET) 。即可以让我们精简代码。

@RestControllerpublic class HelloController {//@RequestMapPing(value="/hello",method= RequestMethod.GET)@GetMapPing(value = "/hello")//required=false 表示url中可以不穿入ID参数,此时就使用默认参数public String sayHello(@RequestParam(value="ID",defaultValue = "1") Integer ID){ return "ID:"+ID; } }

4.PostMapPing组合注解:

方法同GetMapPing

以上这篇浅谈SpringBoot处理url中的参数的注解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的浅谈SpringBoot处理url中的参数的注解全部内容,希望文章能够帮你解决浅谈SpringBoot处理url中的参数的注解所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1227302.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存