SpringBoot 中常用注解及各种注解作用
本篇文章将介绍几种springboot 中常用注解
其中,各注解的作用为:
@pathvaribale 获取url中的数据
@requestparam 获取请求参数的值
@getmapping 组合注解,是@requestmapping(method = requestmethod.get)的缩写
@restcontroller是@responsebody和@controller的组合注解。
@pathvaribale 获取url中的数据
看一个例子,如果我们需要获取url=localhost:8080/hello/id中的id值,实现代码如下:
@restcontroller public class hellocontroller { @requestmapping(value="/hello/{id}",method= requestmethod.get) public string sayhello(@pathvariable("id") integer id){ return "id:"+id; } }
@requestparam 获取请求参数的值
直接看一个例子,如下
@restcontroller public class hellocontroller { @requestmapping(value="/hello",method= requestmethod.get) public string sayhello(@requestparam("id") integer id){ return "id:"+id; } }
在浏览器中输入地址:localhost:8080/hello?id=1000,可以看到如下的结果:
当我们在浏览器中输入地址:localhost:8080/hello?id ,即不输入id的具体值,此时返回的结果为null。具体测试结果如下:
@getmapping 组合注解
@getmapping是一个组合注解,是@requestmapping(method = requestmethod.get)
的缩写。该注解将http get 映射到 特定的处理方法上。
即可以使用@getmapping(value = “/hello”)
来代替@requestmapping(value=”/hello”,method= requestmethod.get)
。即可以让我们精简代码。
例子
@restcontroller public class hellocontroller { //@requestmapping(value="/hello",method= requestmethod.get) @getmapping(value = "/hello") //required=false 表示url中可以不穿入id参数,此时就使用默认参数 public string sayhello(@requestparam(value="id",required = false,defaultvalue = "1") integer id){ return "id:"+id; } }
@restcontroller
spring4之后新加入的注解,原来返回json需要@responsebody
和@controller
配合。
即@restcontroller
是@responsebody
和@controller
的组合注解。
@restcontroller public class hellocontroller { @requestmapping(value="/hello",method= requestmethod.get) public string sayhello(){ return "hello"; } }
与下面的代码作用一样
@controller @responsebody public class hellocontroller { @requestmapping(value="/hello",method= requestmethod.get) public string sayhello(){ return "hello"; } }
注解@requestparam 和 @pathvarible的区别
@requestparam是请求中的参数。如get?id=1
@pathvarible是请求路径中的变量如 get/id=1
总结
以上所述是小编给大家介绍的springboot 中常用注解及各种注解作用,希望对大家有所帮助