UserBean.java中的主要代码:
public class UserBean { @NotEmpty(field="用户ID", message="{errors.required}") //利用不能为空的标签@NotEmpty,输出错误信息 private String userId; @NotEmpty(field="用户姓名", message="{errors.required}") private String userName; @NotEmpty(field="登录密码", message="{errors.required}") private String password; }
HelloWorldController.ja中代码:
public String initregister(Model model, @Valid @ModelAttribute("userBean") UserBean userBean, BindingResult results) throws SQLException { if (results.hasErrors()) { log.info("用户名或密码不能为空!"); return "register"; } }
ValidationMessages.properties中代码:
errors.required={field}为必须输入项目,不能为空! //用来显示输出的错误信息的具体内容!! field为UserBean.java中@NotEmpty(field="用户ID", message="{errors.required}") field的值
将错误信息输出到HTML页面的主要语句:
<span th:if="${#fields.hasErrors(‘${userBean.*}‘)}"><span th:errors="${userBean.*}"></span></span> <span th:text="${message}"></span>
时间: 2024-10-11 19:27:41