Witam,
jestem w trakcie pisania systemu na zaliczenie i jak to bywa zacialem sie …
a mianowicie:
Kontroler:
@Action(value="addUser", results = {
@Result(name= SUCCESS, location="/pages/registerResult.jsp"),
@Result(name = INPUT, location = "/pages/registerForm.jsp"),
@Result(name = ERROR, location = "/pages/registerForm.jsp")
})
@Validations(
requiredStrings = {
@RequiredStringValidator(fieldName = "account.user.login", key = "error.empty.account.user.login")
//
}
)
public String addUser(){
structureService.registerAccount(account, password);
addActionMessage(getText("message.requested.action"));
return SUCCESS;
}
i nie bylo by tutaj nic nadzwyczajnego, gdybym w widoku stosowal struts tag - ale niestety nie statuje i nie moge zmienic
" type=“text” name=“account.user.login”/>
[/code] W takim wypadku zwracam sie do was z pytaniem w jaki sposób zmienic konfiguracje zeby walidacja zaczela dzialac ? - a moze problem lerzy gdzies indziej ?
[code] true input,back,cancel,browse