[AMQ-6899] Use generic spring schema name (working with any Spring version) in RuntimeConfigurationPlugin

(cherry picked from commit c83f7e9aa8)
This commit is contained in:
jbonofre 2020-12-02 11:25:23 +01:00
parent 313f280fb8
commit 1bc1b6d502
1 changed files with 5 additions and 1 deletions

View File

@ -233,7 +233,11 @@ public class RuntimeConfigurationBroker extends AbstractRuntimeConfigurationBrok
ArrayList<StreamSource> schemas = new ArrayList<StreamSource>();
schemas.add(new StreamSource(getClass().getResource("/activemq.xsd").toExternalForm()));
if (getClass().getResource("/org/springframework/beans/factory/xml/spring-beans-3.0.xsd") != null) {
schemas.add(new StreamSource(getClass().getResource("/org/springframework/beans/factory/xml/spring-beans-3.0.xsd").toExternalForm()));
} else {
schemas.add(new StreamSource(getClass().getResource("/org/springframework/beans/factory/xml/spring-beans.xsd").toExternalForm()));
}
schema = schemaFactory.newSchema(schemas.toArray(new Source[]{}));
}
return schema;