You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@aries.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2018/01/31 09:18:00 UTC

[jira] [Commented] (ARIES-1138) Disable Blueprint Schema Validation via System Property

    [ https://issues.apache.org/jira/browse/ARIES-1138?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16346486#comment-16346486 ] 

ASF subversion and git services commented on ARIES-1138:
--------------------------------------------------------

Commit 1822780 from [~gnt] in branch 'aries/trunk'
[ https://svn.apache.org/r1822780 ]

[ARIES-1138] Disable Blueprint Schema Validation via System Property

> Disable Blueprint Schema Validation via System Property
> -------------------------------------------------------
>
>                 Key: ARIES-1138
>                 URL: https://issues.apache.org/jira/browse/ARIES-1138
>             Project: Aries
>          Issue Type: Improvement
>          Components: Blueprint
>    Affects Versions: blueprint-core-1.2.0
>            Reporter: Michael Hirsch
>            Priority: Minor
>             Fix For: blueprint-core-1.9.0
>
>
> The aries blueprint code allows that the schema validation can be disabled by adding a bundle-symbolic-name directive _blueprint.aries.xml-validation:=false_ 
> Unfortunately this must be done for each bundle which contains a blueprint descriptor, inclusive the aries blueprint jar which also contains an blueprint-descriptor.
> It would be nice to disable the schema validation globally of all bundles deployed in the OSGi container because of performance impacts of validating XSDs on a embedded device. Validating XSDs is quiet expensive and not necessary e.g. for production code.
> Blueprint Code which already checks the directive (BlueprintContainerImpl)
> {code}
> String xmlValidationDirective = ((HeaderParser.PathElement)paths.get(0)).getDirective("blueprint.aries.xml-validation");
>     if (xmlValidationDirective != null) {
>       LOGGER.debug("Xml-validation directive: {}", xmlValidationDirective);
>       this.xmlValidation = Boolean.parseBoolean(xmlValidationDirective);
>     }
> {code}
> Cheers,
> Micha



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)