博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springboot带参数路径访问
阅读量:6413 次
发布时间:2019-06-23

本文共 1290 字,大约阅读时间需要 4 分钟。

hot3.png

1.访问方式

http://localhost:8080/huang/liu1?id=1

package com.hls;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.*;/** * Created by huangliusong on 2017/7/18. */@RestController@RequestMapping("/huang")public class HelloController {    @Autowired    private Boyproperties boyproperties;    @RequestMapping(value={"/liu1","/liu2"},method = RequestMethod.GET)    public String say  (@RequestParam("id") Integer myid){        return "index.html?"+myid;    }}

效果

004134_i8fa_3015803.png

2.访问方式http://localhost:8080/huang/liu1/1

package com.hls;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.*;/** * Created by huangliusong on 2017/7/18. */@RestController@RequestMapping("/huang")public class HelloController {    @Autowired    private Boyproperties boyproperties;    @RequestMapping(value={"/liu1/{id}","/liu2"},method = RequestMethod.GET)    public String say  (@PathVariable("id") Integer id){        return "index.html?"+id;    }}

 

转载于:https://my.oschina.net/liusonghuang/blog/1475035

你可能感兴趣的文章
[经验]无线鼠标和无线键盘真的不能用了?——雷柏的重生之路~
查看>>
【转】plist涉及到沙盒的一个问题
查看>>
GNU make manual 翻译( 一百四十五)
查看>>
重构之美-走在Web标准化设计的路上[复杂表单]3 9 Update
查看>>
linux中的优先搜索树的实现--prio_tree【转】
查看>>
转载: 打造自己的asp.net验证控件
查看>>
重构之美-跨越Web标准,触碰语义网[开门见山:Microformat]
查看>>
git入门与实践【转】
查看>>
WPF 虚拟键盘
查看>>
储存卡无法打开专家教您怎么数据恢复
查看>>
彼得原理
查看>>
如何利用【百度地图API】,制作房产酒店地图?(下)——结合自己的数据库...
查看>>
[20171113]修改表结构删除列相关问题3.txt
查看>>
特征选择
查看>>
在Winform程序中设置管理员权限及为用户组添加写入权限
查看>>
RTMP直播到FMS中的AAC音频直播
查看>>
多能互补提速 加快我国能源转型和现代能源体系建设
查看>>
音乐闹钟
查看>>
【uTenux实验】事件标志
查看>>
利用Python进行数据分析(15) pandas基础: 字符串操作
查看>>