gpt4 book ai didi

java - 如何在 @RequestParam() 中将默认值作为整数给出

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:36:41 26 4
gpt4 key购买 nike

我是 spring boot 的新手,正在学习 @RequestParam()

我知道我们可以在 String 中提供 defaultValue,但是当我尝试将默认值作为 Integer 提供时,它向我显示错误。

@RequestMapping("/returnVeriable")
public int getVeriable(@RequestParam(required=true,defaultValue=1/*error here*/) int veri){
return veri;
}

如有任何帮助,我们将不胜感激。

最佳答案

尝试用 ""围绕整数使其成为字符串,因为默认值是作为字符串实现的。

@RequestMapping("/returnVeriable")
public int getVeriable(@RequestParam(required=true,defaultValue="1") Integer veri){
return veri;
}

引用:https://jira.spring.io/browse/SPR-5915

关于java - 如何在 @RequestParam() 中将默认值作为整数给出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47813925/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com