gpt4 book ai didi

constraints - 玩! - 最大约束不起作用

转载 作者:行者123 更新时间:2023-12-04 06:23:46 27 4
gpt4 key购买 nike

我的应用程序有问题,@Max约束注释。

我的 Controller 方法定义如下:

public static void save(@Required @Max(255) String content)

稍后在我的代码中,我进行了错误检查:
if (Validation.hasErrors()) {
render("Foo/bar.html", content);
}

问题是,无论我在表单中发布什么内容(如果它违反或不违反约束),我总是收到错误消息 Cannot be greater than 255 .

这是我用于测试的文本,长度为 119 个字符:
Lorem ipsum dolor 坐 amet,consectetur adipiscing 精英。 Aenean ipsum enim, rhoncus eget volutpat at, posuere non eros。

任何人都遇到过类似的问题并知道如何解决它?

最佳答案

听起来您实际上想使用 @MaxSize确保输入的长度不超过255。

现在您正在使用 @Max ,它尝试将参数转换为数字以确保它在数字上小于或等于给定值。您的文本无法转换为数字,因此在这种情况下验证总是失败。

关于constraints - 玩! - 最大约束不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6258107/

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