Les Hazlewood wrote:
RE: [Hibernate] Better validate on property and value ?

Whats wrong with doing:

public boolean isValid(Mapping mapping) {

    try {
        validate(mapping);
    } catch (MappingException me) {
        return false;
    }

    return true;
}

And give accurate info using log interface ?

Reply via email to