Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component org.nuxeo.ecm.platform.webapp.core.ExceptionHandlingContrib

Requirements

Resolution Order

717
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.webapp.core.ExceptionHandlingContrib">
  <require>
    org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingContrib
  </require>
  
  <!-- TODO: move this contrib and java classe in ui-web -->

  <extension
    target="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingService"
    point="listener">
    <listener class="org.nuxeo.ecm.webapp.shield.SeamExceptionHandlingListener" />
  </extension>

  <extension
    target="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingService"
    point="requestdump">
    <requestdump
      class="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.DefaultRequestDumper">
      <notListed>
        <attribute>org.jboss.seam.international.messages</attribute>
      </notListed>
    </requestdump>
  </extension>

</component>