时间:2021-05-20
本文介绍了 SpringBoot之Controller的使用,分享给大家,具体如下:
1.@Controller:处理http请求
2.@RestController:Spring4之后新加的注解,原来返回json需要@ResponseBody配合@Controller
3.@RequestMapping 配置url映射
1.现在有一个需求(即可以使用localhost:8080/hello和localhost:8080/hi都可以访问):
@RestControllerpublic class HelloController { @RequestMapping(value={"/hello","hi"},method = RequestMethod.GET)//使用集合设置 public String say(){ return "Hello Spring Boot"; }}SpringBoot获取请求参数
1.@PathVariable–>获取url中的数据
2.@ReqeustParam–>获取请求参数的值,可以设置默认值以及是否必传
3.@GetMapping–>组合注解(相当于@RequestMapping同时限定请求方法为GET 方式)
1.第一种方式:
假如http://localhost:8080/hello为请求,springboot为需要传递的参数:http://localhost:8080/hello/spingboot,获取此种请求的参数的方式,使用@PathVariable注解
@RestController public class HelloController { @RequestMapping("/hello/{params}")//获取请求为http://localhost:8080/hello/XXX 类型的参数 public String hello(@PathVariable("params") String paramsStr) {//声明一个变量接收请求中的参数 return "parameter is "+paramsStr; } }运行程序,输入http://localhost:8080/hello/spingboot进行测试:
2.第二种方式:
获取请求为http://localhost:8080/hello?params=spingboot类型的参数,使用@RequesParam注解,使用方法为@RequesParam("请求中的参数名params")
@RestController public class HelloController { //获取请求为http://localhost:8080/hello?xxx=xxx类型的参数 @RequestMapping("/hello") public String hello(@RequestParam("params") String paramsStr) {//requestParam中的参数名称与请求中参数名称要一致 return "parameter is "+paramsStr; } }如:@RequestParam(value="item_id",required=true) String id
@RequestParam中的其他属性:
--required:是否必须,默认是true,表示请求中一定要有相应的参数,否则将报错
--defaultValue:默认值,表示如果请求中没有同名参数时的默认值
启动程序,输入http://localhost:8080/hello?params=spingboot:
对于@RequestMapping(value="/hello",method = RequestMethod.GET)可以使用:@GetMapping(value="/hello"),如果是Post的话就是用@PostMapping
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
使用SpringBoot实现excel生成和下载,生成模板如下controller@RequestMapping(value={"/downloadExcelT
本文介绍了详解SpringBoot之添加单元测试,分享给大家,希望此文章对各位有所帮助在SpringBoot里添加单元测试是非常简单的一件事,我们只需要添加Sp
Springboot使用mysql实例详解开发阶段用H2即可,上线时,通过以下配置切换到mysql,springboot将使用这个配置覆盖默认的H2。1.建立数
1.1准备1.1.1创建SpringBoot项目  创建好一个空的SpringBoot项目之后,写一个controller验证此时是可以
详解springboot-修改内置tomcat版本1、解析SpringBoot父级依赖org.springframework.bootspring-boot-s