META-INF/spring.schemas
5253545556575859
TestEnvStatic.init(); } @BeforeClass public static void initSchemas() { sps = new SpringPluggableSchemas(); resolver = new SchemaEntityResolver(new ResourceEntityResolver(new DefaultResourceLoader()), sps); }
53545556575859
private NamespaceItem[] treeItems; private NamespaceItem[] treeItemsWithAllContributions; /** 通过默认的<code>ClassLoader</code>来装载schemas。 */ public SpringExtSchemaSet() { this(new ConfigurationPointsImpl(), new SpringPluggableSchemas()); }
58596061626364
this(new ConfigurationPointsImpl(), new SpringPluggableSchemas()); } /** 通过指定的<code>ClassLoader</code>来装载schemas。 */ public SpringExtSchemaSet(ClassLoader classLoader) { this(new ConfigurationPointsImpl(classLoader), new SpringPluggableSchemas(classLoader)); }
63646566676869
this(new ConfigurationPointsImpl(classLoader), new SpringPluggableSchemas(classLoader)); } /** 通过指定的<code>ResourceResolver</code>来装载schemas(IDE plugins mode)。 */ public SpringExtSchemaSet(ResourceResolver resourceResolver) { this(new ConfigurationPointsImpl(resourceResolver), new SpringPluggableSchemas(resourceResolver)); }
68697071727374
this(new ConfigurationPointsImpl(resourceResolver), new SpringPluggableSchemas(resourceResolver)); } /** for test only */ SpringExtSchemaSet(String location) { this(new ConfigurationPointsImpl((ClassLoader) null, location), new SpringPluggableSchemas()); }
51525354555657
public class SpringExtSchemaSet extends SchemaSet { private NamespaceItem[] treeItems; /** 通过默认的<code>ClassLoader</code>来装载schemas。 */ public SpringExtSchemaSet() { this(new ConfigurationPointsImpl(), new SpringPluggableSchemas()); }
56575859606162
61626364656667
66676869707172