gpt4 book ai didi

java - gvNIX 典型安全性 : no feedback in signup form UI of binding errors

转载 作者:行者123 更新时间:2023-11-30 08:42:27 24 4
gpt4 key购买 nike

使用典型安全性时,注册表单中的错误不会显示在表单中。没有关于哪里出了问题的反馈,只有一个空白的屏幕。

我在这个问题的底部提供了一个空表单的解决方案。

但问题仍然是如何获取表单中显示的绑定(bind)结果验证错误。就像在“创建新用户”表单中一样。

我正在使用添加了 gvNIX 的 Spring 2.0.0.M1!

我已经创建了一个 issue at github

我的问题:是否有一个简单的解决方法来让它工作。

测试脚本:

// Create a new project
project setup --topLevelPackage com.springsource.pizzashop --projectName pizzashop

jpa setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY

entity jpa --class ~.domain.Pizza
field string --fieldName name --notNull --sizeMin 10
field number --fieldName price --notNull --type java.math.BigDecimal

// Adding web layers
web mvc setup
web mvc all --package ~.web

// Adding Spring security
typicalsecurity setup

// Adding JQuery, Datatables and Bootstrap
web mvc jquery setup
web mvc jquery all
web mvc datatables setup
web mvc bootstrap setup

web mvc bootstrap update

更改密码字段的要求长度:

在文件...\src\main\java\com\springsource\pizzashop\domain\User.java

@NotNull
@Size(min = 8) // was (min = 1)
private String password;

在文件 ..\src\main\java\com\springsource\pizzashop\web\UserRegistrationForm.java 中应用与上面相同的更改。

@NotNull
@Size(min = 8) // was (min = 1)
private String password;

在文件 ...\src\main\java\com\springsource\pizzashop\web\SignUpController.java 中添加一行调试信息

@RequestMapping(method = RequestMethod.POST, produces = "text/html")
public String create(@Valid UserRegistrationForm userRegistration, BindingResult result, Model model, HttpServletRequest request) {
validator.validate(userRegistration, result);

System.out.println("Has binding errors: " + result.toString()); // added

if (result.hasErrors()) {

return createForm(model);
} else {

// Rest of the code

当注册表单中的密码字段仅填写一个字母而不是 8 个字母时,Recaptcha 错误,调试行显示以下消息:

Has binding errors: org.springframework.validation.BeanPropertyBindingResult: 3 errors

Field error in object 'userRegistrationForm' on field 'repeatPassword': rejected value [a]; codes [Size.userRegistrationForm.repeatPassword,Size.repeatPassword,Size.java.lang.String,Size]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [userRegistrationForm.repeatPassword,repeatPassword]; arguments []; default message [repeatPassword],2147483647,8]; default message [size must be between 8 and 2147483647]

Field error in object 'userRegistrationForm' on field 'password': rejected value [a]; codes [Size.userRegistrationForm.password,Size.password,Size.java.lang.String,Size]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [userRegistrationForm.password,password]; arguments []; default message [password],2147483647,8]; default message [size must be between 8 and 2147483647]

Error in object 'userRegistrationForm': codes [recaptcha.mismatch.userRegistrationForm,recaptcha.mismatch]; arguments []; default message [null]

这是正确的,但是用户在屏幕上看到的表单中没有显示任何反馈!所以对于用户来说,不清楚哪里出了问题,为什么表单没有保存,但又回来了。用户看到的只是一个没有任何信息的空注册表单。

enter image description here

我期望的是一条消息,就像在“创建新用户”时显示的那样,此密码字段也填充了一个字母。比红色显示的消息:大小必须介于 8 和 2147483647 之间

enter image description here

空屏解决方法: 空屏幕的解决方案是返回到表单,其中包含用户在按下“保存”时提供的信息。这与 Spring Roo/gvNIX 的其他创建和更新方法中的行为相同。

@RequestMapping(method = RequestMethod.POST, produces = "text/html")
public String create(@Valid UserRegistrationForm userRegistration, BindingResult result, Model model, HttpServletRequest request) {
validator.validate(userRegistration, result);
if (result.hasErrors()) {
model.addAttribute("User", userRegistration); // Added: the original info
return "signup/index";
//return createForm(model); // original, commented out.
} else {

这解决了空白屏幕的问题,用户可以看到他/她提供的信息。但是,我仍然没有看到绑定(bind)结果的红色反馈。

我怎样才能让它可见?

最佳答案

这是在 gvNIX 2.0.0.M1 上发现的错误,将在 gvNIX 项目的 future 版本中修复。

要显示这些错误消息,您必须对项目进行以下更改:

在文件 ~/webapp/WEB-INF/tags/jquery/form/create.tagx(第 ~30 行)你必须编辑 form 元素的 cssClass 属性像这样:

<form:form cssClass="form-horizontal validate" ... >

将红色样式添加到错误范围,在文件 ~/webapp/styles/standard.css 中添加以下代码:

.errors {
color: #b94a48;
display: block;
}

要将此选项应用于密码输入,您必须编辑文件 ~/WEB-INF/tags/jquery/form/fields/input.tagx,将所有这些选项添加到密码输入。像这样将它们全部写在 ~112 行:

          <form:password class="form-control input-sm" id="_${sec_field}_id" path="${sec_field}" disabled="${disabled}" size="${size}"
data-required="${required}" data-invalid="${field_invalid}" data-missing="${sec_field_required}"
data-regex="${validationRegex}" data-minlength="${min}" data-maxlength="${max}"
data-mindecimal="${decimalMin}" data-maxdecimal="${decimalMax}" value="${value}"/>

请尝试一下,然后告诉我它是否对您有用。

We will take in mind this problems for future versions of gvNIX

希望这对您有所帮助。问候。

关于java - gvNIX 典型安全性 : no feedback in signup form UI of binding errors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34565674/

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