我正在阅读Spring MVC中@FquestParam注释的documentation.
文件说:
value : Alias for name().
name: The name of the request parameter to bind to.
名称()的别名是什么意思?
假设你有:
HTTP://本地主机:8080 /用SpringMVC /你好/ 101的param1 = 10安培; param2的= 20
public String getDetails(
@RequestParam(value="param1",required=true) String param1,@RequestParam(value="param2",required=false) String param2){
...
}
例如,value =“param1”是要绑定的request-parameter的名称,而String param1是要绑定的对象.
我怎么能在这里使用name属性?
最佳答案
原文链接:https://www.f2er.com/spring/431837.html