首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

@RequestParam跟@PathVariable

2013-11-18 
@RequestParam和@PathVariable@RequestParam和@PathVariable这两个有什么区别:www.baidu.com/aaa?abc123?

@RequestParam和@PathVariable

@RequestParam和@PathVariable这两个有什么区别:

www.baidu.com/aaa?abc=123

?

?

@RequestParam取到的就是?号后对应的类容

这个我补全一下

@RequestParam(value="abc", required=false) int abc

?

@PathVariable取到的值是URI里对应的值(非问号后的)

补全一下为

@PathVariable?String aaa

?

?

?

热点排行