Package org.springframework.instrument.classloading

Examples of org.springframework.instrument.classloading.ShadowingClassLoader.excludeClass()


   */
  @Test(expected = BeanDefinitionParsingException.class)
  public void shouldThrowBeanDefinitionParsingExceptionIfClassFromSpringAspectsJarCannotBeFound() {

    ShadowingClassLoader scl = new ShadowingClassLoader(getClass().getClassLoader());
    scl.excludeClass(AuditingBeanDefinitionParser.AUDITING_ENTITY_LISTENER_CLASS_NAME);
    loadFactoryFrom("auditing/auditing-namespace-context.xml", scl);
  }

  private void assertSetDatesIsSetTo(String configFile, String value) {

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.