Skip to content

Instantly share code, notes, and snippets.

@techisbeautiful
Created June 3, 2023 08:41
Show Gist options
  • Save techisbeautiful/6d2195db4d22ceaf4c4748e1ce1e7ae1 to your computer and use it in GitHub Desktop.
Save techisbeautiful/6d2195db4d22ceaf4c4748e1ce1e7ae1 to your computer and use it in GitHub Desktop.
Robust Validation and Error Handling
public class LoginForm extends ActionForm {
@RequiredFieldValidator(message = "Username is required.")
private String username;
@RequiredFieldValidator(message = "Password is required.")
private String password;
// Getters and setters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment