gpt4 book ai didi

java - 通过 Rest 服务从数据库中添加许多(未指定数量)对象的方法

转载 作者:行者123 更新时间:2023-12-04 14:19:17 25 4
gpt4 key购买 nike

我正在尝试编写自己的应用程序。它应该提供带有参数的添加食品,我已经完成了,进一步的目的是对添加产品的所有属性求和,与每日余额进行比较等。

我对将产品与膳食联系起来的概念有疑问。我想知道是否有一些漂亮的替代函数可以使用特定数量的(可选)参数,女巫是功能的一定限制。这是一个临时解决方案,但我不喜欢它,所以我暂时不开发它。有一个更好的方法吗?

@RequestMapping("/add")
public Integer adding(@RequestParam("i") Long index,
@RequestParam("i2") Long index2,
@RequestParam(value="i3", required = false, defaultValue = "0") Long index3,
@RequestParam(value="i4", required = false, defaultValue = "0") Long index4,
@RequestParam(value="i5", required = false, defaultValue = "0") Long index5,
@RequestParam(value="i6", required = false, defaultValue = "0") Long index6
){
Integer sum = null;


Integer i1 = productManager.findById(index).get().getCalories();
Products second = productManager.findById(index2).get();
Integer i2 = second.getCalories();

Integer i3,a,b,c;
if (index3==0){
i3=0;
} else {
Products thrid = productManager.findById(index3).get();
i3 = thrid.getCalories();
}
sum= i1+i2+i3;
return sum;
}

最佳答案

您可以使用列表作为查询参数。

@RequestMapping("/add")
public Integer adding(@RequestParam("index") List<Long> indicies){...}

URL 如下:http://yourhost:port/add?index=1&index=2&index=3我建议对方法和 url 参数使用更好的名称然后 add。也许 sumCalories 或类似的东西。

如果你使用 RDBMS 来持久化你的产品(你能给我更多的细节吗?),你可以写一个查询来求和所需的值:

@Query("select sum(p.calorie) from Products p where p.id in :ids")
Long sumCaloriesByIds(@Param("ids") List<Long> ids);

关于java - 通过 Rest 服务从数据库中添加许多(未指定数量)对象的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56744497/

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