最近在研究spring的jpetstore的例子,新建用户的代码有点迷糊
java 代码
- package org.springframework.samples.jpetstore.web.spring;
-
- import java.util.HashMap;
- import java.util.Map;
-
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
-
- import org.springframework.beans.support.PagedListHolder;
- import org.springframework.dao.DataIntegrityViolationException;
- import org.springframework.samples.jpetstore.domain.Account;
- import org.springframework.samples.jpetstore.domain.logic.PetStoreFacade;
- import org.springframework.validation.BindException;
- import org.springframework.validation.ValidationUtils;
- import org.springframework.web.servlet.ModelAndView;
- import org.springframework.web.servlet.mvc.SimpleFormController;
- import org.springframework.web.util.WebUtils;
-
-
-
-
-
- public class AccountFormController extends SimpleFormController {
-
- public static final String[] LANGUAGES = {"english", "japanese"};
-
- private PetStoreFacade petStore;
-
- public AccountFormController() {
-
-
- System.out.println("AccountFormController() is called!");
- setSessionForm(true);
-
- setValidateOnBinding(false);
-
- setCommandName("accountForm");
-
- setFormView("EditAccountForm");
- }
-
- public void setPetStore(PetStoreFacade petStore) {
- this.petStore = petStore;
- }
-
-
-
- protected Object formBackingObject(HttpServletRequest request) throws Exception {
- System.out.println("formBackingObject is called!");
- UserSession userSession = (UserSession) WebUtils.getSessionAttribute(request, "userSession");
- if (userSession != null) {
-
- return new AccountForm(this.petStore.getAccount(userSession.getAccount().getUsername()));
- }
- else {
-
- return new AccountForm();
- }
- }
-
-
-
- protected void onBindAndValidate(HttpServletRequest request, Object command, BindException errors)
- throws Exception {
- System.out.println("onBindAndValidate is called!");
- AccountForm accountForm = (AccountForm) command;
- Account account = accountForm.getAccount();
-
- if (request.getParameter("account.listOption") == null) {
- account.setListOption(false);
- }
- if (request.getParameter("account.bannerOption") == null) {
- account.setBannerOption(false);
- }
-
- errors.setNestedPath("account");
- getValidator().validate(account, errors);
- errors.setNestedPath("");
-
- if (accountForm.isNewAccount()) {
- account.setStatus("OK");
- ValidationUtils.rejectIfEmpty(errors, "account.username", "USER_ID_REQUIRED", "User ID is required.");
- if (account.getPassword() == null || account.getPassword().length() < 1 ||
- !account.getPassword().equals(accountForm.getRepeatedPassword())) {
- errors.reject("PASSWORD_MISMATCH",
- "Passwords did not match or were not provided. Matching passwords are required.");
- }
- }
- else if (account.getPassword() != null && account.getPassword().length() > 0) {
- if (!account.getPassword().equals(accountForm.getRepeatedPassword())) {
- errors.reject("PASSWORD_MISMATCH",
- "Passwords did not match. Matching passwords are required.");
- }
- }
- }
-
-
-
- protected Map referenceData(HttpServletRequest request) throws Exception {
- System.out.println("referenceData is called!");
- Map model = new HashMap();
- model.put("languages", LANGUAGES);
- model.put("categories", this.petStore.getCategoryList());
- return model;
- }
-
- protected ModelAndView onSubmit(
- HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
- throws Exception {
- System.out.println("onSubmit is called!");
- AccountForm accountForm = (AccountForm) command;
- try {
- if (accountForm.isNewAccount()) {
- this.petStore.insertAccount(accountForm.getAccount());
- }
- else {
- this.petStore.updateAccount(accountForm.getAccount());
- }
- }
- catch (DataIntegrityViolationException ex) {
- errors.rejectValue("account.username", "USER_ID_ALREADY_EXISTS",
- "User ID already exists: choose a different ID.");
- return showForm(request, response, errors);
- }
-
- UserSession userSession = new UserSession(this.petStore.getAccount(accountForm.getAccount().getUsername()));
- PagedListHolder myList = new PagedListHolder(
- this.petStore.getProductListByCategory(accountForm.getAccount().getFavouriteCategoryId()));
- myList.setPageSize(4);
- userSession.setMyList(myList);
- request.getSession().setAttribute("userSession", userSession);
- return super.onSubmit(request, response, command, errors);
- }
-
- }
因为simpleForm既显示表单又处理表单,所以我在代码中加入了输出语句来看哪些方法是在显示表单时调用,哪些是在处理表单时调用。答案我是找到了,注释中也标注了,但是还是觉得有点迷糊,referenceData()方法在显示表单时被调用的作用是什么?errors.setNestedPath("account");是 什么意思?感觉好像在这个处理上没有struts的清晰。手头上的 资料对于simpleForm方面的没有这个复杂。文档嘛也似乎看得不是很明白。
java 代码
- public AccountFormController() {
-
-
- System.out.println("AccountFormController() is called!");
- setSessionForm(true);
-
- setValidateOnBinding(false);
-
- setCommandName("accountForm");
-
- setFormView("EditAccountForm");
- }
上面这段代码能猜出是什么意思,但 好像没怎么彻底理解。setSessionForm(true);什么时候把表单放到Session中的??
setValidateOnBinding(false);什么时候绑定的验证的呢?setCommandName("accountForm");accountForm是个含有Accout属性和isNewAccount的bean。怎么把表单数据填入accountForm的呢?什么时候填入的呢?
对于流程网上有以下解释:
它的处理流程是这样的:
get请求来到时,这样处理:
a) 请求传递给一个controller对象
b) 调用formBackingObject()方法,创建一个command对象的实例。 c) 调用initBinder(),注册需要的类型转换器
d) 调用showForm()方法,返回准备呈现给用户的视图
e) 调用referenceData()方法,准备给用户显示相关的数据。如用户登录需要选择的年度信息
f) 返回formView指定的视图
post请求来到时,这样处理:
a) 调用formBackingObject()方法,创建一个command对象的实例。
b) 将请求传来的参数写入command对象
c) 如果设置为要求验证,则调用validator类进行数据验证
d) 调用onBindAndValidate()方法,该方法允许自定义数据绑定和校验处理
e) 调用onSubmit()方法,进行业务逻辑处理
哪位大侠能针对这个代码详细的解释下究竟这个 代码 的处理流程是什么呢?在显示表单时细节是什么?在处理表单时细节是什么?上面代码各个方法是具体意思是什么呢?什么时候调用的?做什么用的呢?
- 描述: simpleForm流程图一
- 大小: 59.6 KB
- 描述: simpleForm流程图二
- 大小: 128.7 KB
分享到:
相关推荐
在Ruby on Rails框架中,构建表单是一项常见的任务,而Simple Form gem就是为了简化这一过程而设计的。Simple Form是一款强大的表单构建器,它提供了一种简洁、直观的方式来创建复杂的表单,使得开发者能更专注于...
替罪羊发送电子邮件的简单组件安装npm install react-simpleform --save用法var SimpleMail = require('simplemail')测试npm 测试发布历史1.0.0 初始版本
语言:English ...您可以在首选项中配置注释 - 它们与在填充之前的项目中匹配但从项目中删除回馈--------您可以在https://github.com/sblask/webextension-simple-forp-flow上报告错误或制作功能请求欢迎补丁。
您可以在首选项中配置注释-在添加反馈之前,注释会与项目匹配但已从项目中删除--------您可以在https://github.com/sblask/webextension-simple上报告错误或提出功能请求欢迎填写表格。 支持语言:English
const SimpleForm = () => { const formData = {/* 初始数据或从服务器获取 */}; const onSubmit = (data, errors) => { if (!errors) { // 提交表单逻辑 } }; return ( <Form schema={schema} // 上述...
gem 'simple_form_wysihtml' 并执行: $ bundle 或者自己安装: $ gem install simple_form_wysihtml 要使其工作,您需要在application.js要求 javascripts : //= require simple_form_wysihtml 您可以选择...
"Simple Student Form Registration App" 是一个使用JavaScript技术构建的应用,主要目标是实现学生信息的注册功能。这个应用可能包括创建HTML表单、处理用户输入、验证数据以及存储或展示提交的信息。JavaScript...
SimpleShow 是#show,就像SimpleForm 是#edit 一样。 要求: 导轨 3 安装: 将其添加到您的 Gemfile 中: gem "simple_show" 更新您的捆绑包: bundle update simple_show 运行生成器: rails generate ...
FillForm功能概要描述及与普通填表扩展autofill forms的比较: * 通过一个快捷键(Alt + Q)就可以填写当前网页内容。 * 通过一个快捷键(Alt + W)就可以保存当前网页内容,这是autofill forms所没有的功能。 * ...
《Delphi控件实现流程图绘制:SimpleGraph v2.90详解》 在软件开发过程中,流程图是一种直观表达程序逻辑和系统流程的重要工具。本文将深入探讨一个基于Delphi开发的流程图控件——SimpleGraph v2.90,它是一个开源...
gem 'simple_form_recurring_select' 然后执行: $ bundle 或将其自己安装为: $ gem install simple_form_recurring_select 用法 在模型中: class MyModel include SimpleFormRecurringSelect :: ...
Simpleflow工作流引擎是一款在IT领域广泛应用的流程管理工具,尤其在Domino Lotus环境中,它为组织提供了高效、灵活的工作流自动化解决方案。该版本V20071227在原有基础上进行了重要更新,增强了流程管理和数据归档...
SimpleMail的理解与思考 一个用于发送邮件的简单程序
在压缩包文件中,"simpleFlow"可能包含以下组件: 1. **CSS文件**:定义流程图及各节点的样式,例如`syle.css`。 2. **JavaScript文件**:包含流程图插件的核心逻辑,如`flowchart.js`,可能包括初始化流程图、添加...
标题 "Simple Contact Form Using HTML JavaScript.zip" 涉及到的是一个基础的网页表单设计,其中使用了HTML和JavaScript技术。在这个项目中,开发者创建了一个简易的联系表单,以便访客能方便地向网站所有者发送...
"SimpleGraph 2.62" 是一个由外籍开发者创建的图形绘制工具,主要用于创建流程图。这个控件设计用于软件开发,特别是那些需要在用户界面中集成绘图功能的应用程序。SimpleGraph 提供了一个简单易用的接口,使得...
6. SimpleGraph.pas:这是Delphi的源代码文件,包含了流程图控件的主要实现代码。 7. ReadMe.htm:这是常见的说明文件,通常包含如何使用、安装或配置资源的指导信息。 8. SimpleGraph.res:这是Delphi的资源文件,...
simple_form_validation 简单的表单验证提供验证格式并返回结果介绍它仅验证输入值。特征简单的只有JavaScript 仅提供价值验证并返回结果开发人员可以处理形式验证中的逻辑用法方法必需(validateInput,errorMsg) ...
它们的共同点均是通过REdis的简单事件驱动(AE,A simple event-driven)触发,对于Linux实际是epoll的包装,对于macOS为evport的包装,对于FreeBSD对kqueue的包装,对于其它则是select的包装。