Package org.hibernate.search.engine.service.classloading.spi

Examples of org.hibernate.search.engine.service.classloading.spi.ClassLoaderService.locateResourceStream()


  @Override
  public InputStream openResource(String resource) throws IOException {
    ClassLoaderService classLoaderService = serviceManager.requestService( ClassLoaderService.class );
    InputStream inputStream;
    try {
      inputStream = classLoaderService.locateResourceStream( resource );
    }
    finally {
      serviceManager.releaseService( ClassLoaderService.class );
    }
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.