My JSF Books/Videos My JSF Tutorials OmniFaces/JSF PPTs
JSF 2.3 Tutorial
JSF Caching Tutorial
JSF Navigation Tutorial
JSF Scopes Tutorial
JSF Page Author Beginner's Guide
OmniFaces 2.3 Tutorial Examples
OmniFaces 2.2 Tutorial Examples
JSF Events Tutorial
OmniFaces Callbacks Usages
JSF State Tutorial
JSF and Design Patterns
JSF 2.3 New Features (2.3-m04)
Introduction to OmniFaces
25+ Reasons to use OmniFaces in JSF
OmniFaces Validators
OmniFaces Converters
JSF Design Patterns
Mastering OmniFaces
Reusable and less-verbose JSF code

My JSF Resources ...

Java EE Guardian
Member of JCG Program
Member MVB DZone
Blog curated on ZEEF
OmniFaces is an utility library for JSF, including PrimeFaces, RichFaces, ICEfaces ...

.

.

.

.

.

.

.

.


[OmniFaces Utilities] - Find the right JSF OmniFaces 2 utilities methods/functions

Search on blog

Petition by Java EE Guardians

Twitter

luni, 2 martie 2015

[OmniFaces utilities (2.1/2.0)] Check if an exception or one of its nested causes is an instance of the given type


[OmniFaces utilities] The is() method returns true if the given exception or one of its nested causes is an instance of the given type.

Method:

OmniFaces 2.1 implementation:

OmniFaces 2.0 implementation:
Usage:

Example 1 - this is copy-pasted from OmniFaces documentation (check if the ConstraintViolationException is the cause of PersistenceException)

try{
   ... 
   } catch (PersistenceException e) {
     // Check if the caught exception has a ConstraintViolationException in its hierarchy.
     if (Exceptions.is(e, ConstraintViolationException.class)) {   
         // ...
     }
   }

Example 2 - distinguish between NullPointerException and IllegalArgumentException

try {
    //... code that may produce other exceptions than NullPointerException and IllegalArgumentException

    // if the 'myform' component is not found then next line will throw a NullPointerException
    UIForm myform = (UIForm) Faces.getViewRoot().findComponent("myForm");
    // if the 'myform' component contains children then next line will throw an IllegalArgumentException
    Components.validateHasNoChildren(myform);

    //... more code that may produce other exceptions than NullPointerException and IllegalArgumentException
    } catch (Exception e) {
      if (Exceptions.is(e, java.lang.NullPointerException.class)) {
          LOG.info("The form 'myFrom' cannot be found !");
      } else if (Exceptions.is(e, java.lang.IllegalArgumentException.class)) {
          LOG.log(Level.INFO, "]" + "The form ''myFrom'' was found, but it has childrens ! [{0}", e.getMessage());
      }
    }

Example 3 - in a custom exception handler for conditional navigation
...
Throwable throwable = exceptionQueuedEventContext.getException();
FacesContext facesContext = FacesContext.getCurrentInstance();
NavigationHandler nav = facesContext.getApplication().getNavigationHandler();

if (Exceptions.is(throwable, javax.faces.convert.ConverterException.class)) {
    //redirect to converters error page, converter.xhtml                                       
    nav.handleNavigation(facesContext, null, "/converter");
}

if (Exceptions.is(throwable, javax.faces.validator.ValidatorException.class)) {
    //redirect to validators error page, validator.xhtml
    nav.handleNavigation(facesContext, null, "/validator");
}

facesContext.renderResponse();
...

Obviously, you may found many useful examples for this method.

Niciun comentariu :

Trimiteți un comentariu

JSF BOOKS COLLECTION

Postări populare

OmniFaces/JSF Fans

Visitors Starting 4 September 2015

Locations of Site Visitors