How does Input Result Work in Struts2?
Struts2's INPUT result is triggered when the workflow interceptor detects field errors, either from conversion or validation errors. Rather than raising exceptions, these errors are considered input errors, so an INPUT result is returned to request user input correction.
Handling Conversion / Validation Errors
Struts2's error handling mechanism involves several key steps:
- Parameter Interceptor: Attempts to set parameters. If a runtime exception occurs during conversion (e.g., NumberFormatException), it's swallowed silently or logged with a developer notification.
- Conversion Errors Interceptor: Identifies any conversion errors and adds field errors to the ActionContext. It also stores original values to ensure they're displayed to the user if the field contains validation errors.
- Validation Interceptor: Performs validations based on XML, annotations, or action methods. If validation fails, it adds field errors to the ActionContext for each non-complying field.
- Workflow Interceptor: Checks for field errors from both conversion and validation. If errors exist, it returns an INPUT result; otherwise, it proceeds with the next interceptor.
To enable this mechanism, ensure that the following interceptors are defined in the correct order:
<interceptor-ref name="params"></interceptor-ref> <interceptor-ref name="conversionError"></interceptor-ref> <interceptor-ref name="validation"></interceptor-ref> <interceptor-ref name="workflow"></interceptor-ref>
Additional Note on Integer Conversion
To handle the conversion of non-numeric characters to zero, avoid using the value attribute in conjunction with a getter that returns an int data type. This can cause an additional conversion error and result in a value of 0. Instead, use the following syntax:
<textfield name="myIntField"></textfield>
Or
<textfield name="myIntField" value="%{myIntField}"></textfield>
The above is the detailed content of How Does Struts2 Handle Input Errors and Return an INPUT Result?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Chinese version
Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool