📄 formtag.java
字号:
*/
public int doStartTag() throws JspException {
postbackAction = null;
// Look up the form bean name, scope, and type if necessary
this.lookup();
// Create an appropriate "form" element based on our parameters
StringBuffer results = new StringBuffer();
results.append(this.renderFormStartElement());
results.append(this.renderToken());
TagUtils.getInstance().write(pageContext, results.toString());
// Store this tag itself as a page attribute
pageContext.setAttribute(Constants.FORM_KEY, this,
PageContext.REQUEST_SCOPE);
this.initFormBean();
return (EVAL_BODY_INCLUDE);
}
/**
* Locate or create the bean associated with our form.
*
* @throws JspException
* @since Struts 1.1
*/
protected void initFormBean()
throws JspException {
int scope = PageContext.SESSION_SCOPE;
if ("request".equalsIgnoreCase(beanScope)) {
scope = PageContext.REQUEST_SCOPE;
}
Object bean = pageContext.getAttribute(beanName, scope);
if (bean == null) {
// New and improved - use the values from the action mapping
bean =
RequestUtils.createActionForm((HttpServletRequest) pageContext
.getRequest(), mapping, moduleConfig, servlet);
if (bean instanceof ActionForm) {
((ActionForm) bean).reset(mapping,
(HttpServletRequest) pageContext.getRequest());
}
if (bean == null) {
throw new JspException(messages.getMessage("formTag.create",
beanType));
}
pageContext.setAttribute(beanName, bean, scope);
}
pageContext.setAttribute(Constants.BEAN_KEY, bean,
PageContext.REQUEST_SCOPE);
}
/**
* Generates the opening <code><form></code> element with
* appropriate attributes.
*
* @since Struts 1.1
*/
protected String renderFormStartElement()
throws JspException {
StringBuffer results = new StringBuffer("<form");
// render attributes
renderName(results);
renderAttribute(results, "method",
(getMethod() == null) ? "post" : getMethod());
renderAction(results);
renderAttribute(results, "accept-charset", getAcceptCharset());
renderAttribute(results, "class", getStyleClass());
renderAttribute(results, "dir", getDir());
renderAttribute(results, "enctype", getEnctype());
renderAttribute(results, "lang", getLang());
renderAttribute(results, "onreset", getOnreset());
renderAttribute(results, "onsubmit", getOnsubmit());
renderAttribute(results, "style", getStyle());
renderAttribute(results, "target", getTarget());
// Hook for additional attributes
renderOtherAttributes(results);
results.append(">");
return results.toString();
}
/**
* Renders the name of the form. If XHTML is set to true, the name will
* be rendered as an 'id' attribute, otherwise as a 'name' attribute.
*/
protected void renderName(StringBuffer results)
throws JspException {
if (this.isXhtml()) {
if (getStyleId() == null) {
renderAttribute(results, "id", beanName);
} else {
throw new JspException(messages.getMessage("formTag.ignoredId"));
}
} else {
renderAttribute(results, "name", beanName);
renderAttribute(results, "id", getStyleId());
}
}
/**
* Renders the action attribute
*/
protected void renderAction(StringBuffer results) {
String calcAction = (this.action == null ? postbackAction : this.action);
HttpServletResponse response =
(HttpServletResponse) this.pageContext.getResponse();
results.append(" action=\"");
results.append(response.encodeURL(
TagUtils.getInstance().getActionMappingURL(calcAction,
this.pageContext)));
results.append("\"");
}
/**
* 'Hook' to enable this tag to be extended and additional attributes
* added.
*/
protected void renderOtherAttributes(StringBuffer results) {
}
/**
* Generates a hidden input field with token information, if any. The
* field is added within a div element for HTML 4.01 Strict compliance.
*
* @return A hidden input field containing the token.
* @since Struts 1.1
*/
protected String renderToken() {
StringBuffer results = new StringBuffer();
HttpSession session = pageContext.getSession();
if (session != null) {
String token =
(String) session.getAttribute(Globals.TRANSACTION_TOKEN_KEY);
if (token != null) {
results.append("<div><input type=\"hidden\" name=\"");
results.append(Constants.TOKEN_KEY);
results.append("\" value=\"");
results.append(token);
if (this.isXhtml()) {
results.append("\" />");
} else {
results.append("\">");
}
results.append("</div>");
}
}
return results.toString();
}
/**
* Renders attribute="value" if not null
*/
protected void renderAttribute(StringBuffer results, String attribute,
String value) {
if (value != null) {
results.append(" ");
results.append(attribute);
results.append("=\"");
results.append(value);
results.append("\"");
}
}
/**
* Render the end of this form.
*
* @throws JspException if a JSP exception has occurred
*/
public int doEndTag() throws JspException {
// Remove the page scope attributes we created
pageContext.removeAttribute(Constants.BEAN_KEY,
PageContext.REQUEST_SCOPE);
pageContext.removeAttribute(Constants.FORM_KEY,
PageContext.REQUEST_SCOPE);
// Render a tag representing the end of our current form
StringBuffer results = new StringBuffer("</form>");
// Render JavaScript to set the input focus if required
if (this.focus != null) {
results.append(this.renderFocusJavascript());
}
// Print this value to our output writer
JspWriter writer = pageContext.getOut();
try {
writer.print(results.toString());
} catch (IOException e) {
throw new JspException(messages.getMessage("common.io", e.toString()));
}
postbackAction = null;
// Continue processing this page
return (EVAL_PAGE);
}
/**
* Generates javascript to set the initial focus to the form element given
* in the tag's "focus" attribute.
*
* @since Struts 1.1
*/
protected String renderFocusJavascript() {
StringBuffer results = new StringBuffer();
results.append(lineEnd);
results.append("<script type=\"text/javascript\"");
if (!this.isXhtml() && this.scriptLanguage) {
results.append(" language=\"JavaScript\"");
}
results.append(">");
results.append(lineEnd);
// xhtml script content shouldn't use the browser hiding trick
if (!this.isXhtml()) {
results.append(" <!--");
results.append(lineEnd);
}
// Construct the control name that will receive focus.
// This does not include any index.
StringBuffer focusControl = new StringBuffer("document.forms[\"");
focusControl.append(beanName);
focusControl.append("\"].elements[\"");
focusControl.append(this.focus);
focusControl.append("\"]");
results.append(" var focusControl = ");
results.append(focusControl.toString());
results.append(";");
results.append(lineEnd);
results.append(lineEnd);
results.append(" if (focusControl.type != \"hidden\" && ");
results.append("!focusControl.disabled && ");
results.append("focusControl.style.display != \"none\") {");
results.append(lineEnd);
// Construct the index if needed and insert into focus statement
String index = "";
if (this.focusIndex != null) {
StringBuffer sb = new StringBuffer("[");
sb.append(this.focusIndex);
sb.append("]");
index = sb.toString();
}
results.append(" focusControl");
results.append(index);
results.append(".focus();");
results.append(lineEnd);
results.append(" }");
results.append(lineEnd);
if (!this.isXhtml()) {
results.append(" // -->");
results.append(lineEnd);
}
results.append("</script>");
results.append(lineEnd);
return results.toString();
}
/**
* Release any acquired resources.
*/
public void release() {
super.release();
action = null;
moduleConfig = null;
enctype = null;
dir = null;
disabled = false;
focus = null;
focusIndex = null;
lang = null;
mapping = null;
method = null;
onreset = null;
onsubmit = null;
readonly = false;
servlet = null;
style = null;
styleClass = null;
styleId = null;
target = null;
acceptCharset = null;
}
// ------------------------------------------------------ Protected Methods
/**
* Look up values for the <code>name</code>, <code>scope</code>, and
* <code>type</code> properties if necessary.
*
* @throws JspException if a required value cannot be looked up
*/
protected void lookup() throws JspException {
// Look up the module configuration information we need
moduleConfig = TagUtils.getInstance().getModuleConfig(pageContext);
if (moduleConfig == null) {
JspException e =
new JspException(messages.getMessage("formTag.collections"));
pageContext.setAttribute(Globals.EXCEPTION_KEY, e,
PageContext.REQUEST_SCOPE);
throw e;
}
String calcAction = this.action;
// If the action is not specified, use the original request uri
if (this.action == null) {
HttpServletRequest request =
(HttpServletRequest) pageContext.getRequest();
postbackAction =
(String) request.getAttribute(Globals.ORIGINAL_URI_KEY);
String prefix = moduleConfig.getPrefix();
if (postbackAction != null && prefix.length() > 0 && postbackAction.startsWith(prefix)) {
postbackAction = postbackAction.substring(prefix.length());
}
calcAction = postbackAction;
} else {
// Translate the action if it is an actionId
ActionConfig actionConfig = moduleConfig.findActionConfigId(this.action);
if (actionConfig != null) {
this.action = actionConfig.getPath();
calcAction = this.action;
}
}
servlet =
(ActionServlet) pageContext.getServletContext().getAttribute(Globals.ACTION_SERVLET_KEY);
// Look up the action mapping we will be submitting to
String mappingName =
TagUtils.getInstance().getActionMappingName(calcAction);
mapping = (ActionMapping) moduleConfig.findActionConfig(mappingName);
if (mapping == null) {
JspException e =
new JspException(messages.getMessage("formTag.mapping",
mappingName));
pageContext.setAttribute(Globals.EXCEPTION_KEY, e,
PageContext.REQUEST_SCOPE);
throw e;
}
// Look up the form bean definition
FormBeanConfig formBeanConfig =
moduleConfig.findFormBeanConfig(mapping.getName());
if (formBeanConfig == null) {
JspException e = null;
if (mapping.getName() == null) {
e = new JspException(messages.getMessage("formTag.name", calcAction));
} else {
e = new JspException(messages.getMessage("formTag.formBean",
mapping.getName(), calcAction));
}
pageContext.setAttribute(Globals.EXCEPTION_KEY, e,
PageContext.REQUEST_SCOPE);
throw e;
}
// Calculate the required values
beanName = mapping.getAttribute();
beanScope = mapping.getScope();
beanType = formBeanConfig.getType();
}
/**
* Returns true if this tag should render as xhtml.
*/
private boolean isXhtml() {
return TagUtils.getInstance().isXhtml(this.pageContext);
}
/**
* Returns the focusIndex.
*
* @return String
*/
public String getFocusIndex() {
return focusIndex;
}
/**
* Sets the focusIndex.
*
* @param focusIndex The focusIndex to set
*/
public void setFocusIndex(String focusIndex) {
this.focusIndex = focusIndex;
}
/**
* Gets whether or not the focus script's <script> element will
* include the language attribute.
*
* @return true if language attribute will be included.
* @since Struts 1.2
*/
public boolean getScriptLanguage() {
return this.scriptLanguage;
}
/**
* Sets whether or not the focus script's <script> element will
* include the language attribute.
*
* @since Struts 1.2
*/
public void setScriptLanguage(boolean scriptLanguage) {
this.scriptLanguage = scriptLanguage;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -