Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
java
java
titleDeactivation of the InvalidValueAwareMessageInterpolator
@ApplicationScoped
@Alternative
public class CustomJsfModuleConfig extends JsfModuleConfig
{
    @Override
    public boolean isInvalidValueAwareMessageInterpolatorEnabled()
    {
        return false;
    }
}

Due to https://issues.jboss.org/browse/WELD-802Image Removed it's required to use @Alternative (+ xml config) instead of @Specializes.

...