Examples of MappingNotFoundException


Examples of org.hibernate.MappingNotFoundException

    final InputSource inputSource;
    try {
      inputSource = new InputSource( new FileInputStream( xmlFile ) );
    }
    catch ( FileNotFoundException e ) {
      throw new MappingNotFoundException( "file", xmlFile.toString() );
    }
    add( inputSource, "file", name );
    return this;
  }
View Full Code Here

Examples of org.hibernate.MappingNotFoundException

    final InputSource inputSource;
    try {
      inputSource = new InputSource( new FileInputStream( xmlFile ) );
    }
    catch ( FileNotFoundException e ) {
      throw new MappingNotFoundException( "file", xmlFile.toString() );
    }

    LOG.readingMappingsFromFile( xmlFile.getPath() );
    XmlDocument metadataXml = add( inputSource, "file", name );
View Full Code Here

Examples of org.hibernate.MappingNotFoundException

   */
  public Configuration addResource(String resourceName, ClassLoader classLoader) throws MappingException {
    LOG.readingMappingsFromResource( resourceName );
    InputStream resourceInputStream = classLoader.getResourceAsStream( resourceName );
    if ( resourceInputStream == null ) {
      throw new MappingNotFoundException( "resource", resourceName );
    }
    add( resourceInputStream, "resource", resourceName );
    return this;
  }
View Full Code Here

Examples of org.hibernate.metamodel.source.MappingNotFoundException

    LOG.tracef( "reading mappings from resource : %s", name );

    final Origin origin = new Origin( SourceType.RESOURCE, name );
    InputStream resourceInputStream = classLoaderService().locateResourceStream( name );
    if ( resourceInputStream == null ) {
      throw new MappingNotFoundException( origin );
    }
    add( resourceInputStream, origin, true );

    return this;
  }
View Full Code Here

Examples of org.hibernate.metamodel.source.MappingNotFoundException

    final Origin origin = new Origin( SourceType.FILE, name );
    try {
      add( new FileInputStream( file ), origin, true );
    }
    catch ( FileNotFoundException e ) {
      throw new MappingNotFoundException( e, origin );
    }
    return this;
  }
View Full Code Here

Examples of org.hibernate.metamodel.source.MappingNotFoundException

    final Origin origin = new Origin( SourceType.URL, urlExternalForm );
    try {
      add( url.openStream(), origin, true );
    }
    catch ( IOException e ) {
      throw new MappingNotFoundException( "Unable to open url stream [" + urlExternalForm + "]", e, origin );
    }
    return this;
  }
View Full Code Here

Examples of org.hibernate.metamodel.source.MappingNotFoundException

        catch ( Exception ignore ) {
        }
      }
    }
    catch ( IOException e ) {
      throw new MappingNotFoundException( e, origin );
    }
    return this;
  }
View Full Code Here

Examples of org.hibernate.metamodel.source.MappingNotFoundException

    LOG.tracef( "reading mappings from resource : %s", name );

    final Origin origin = new Origin( SourceType.RESOURCE, name );
    InputStream resourceInputStream = classLoaderService().locateResourceStream( name );
    if ( resourceInputStream == null ) {
      throw new MappingNotFoundException( origin );
    }
    add( resourceInputStream, origin, true );

    return this;
  }
View Full Code Here

Examples of org.hibernate.metamodel.source.MappingNotFoundException

    final Origin origin = new Origin( SourceType.FILE, name );
    try {
      add( new FileInputStream( file ), origin, true );
    }
    catch ( FileNotFoundException e ) {
      throw new MappingNotFoundException( e, origin );
    }
    return this;
  }
View Full Code Here

Examples of org.hibernate.metamodel.source.MappingNotFoundException

    final Origin origin = new Origin( SourceType.URL, urlExternalForm );
    try {
      add( url.openStream(), origin, true );
    }
    catch ( IOException e ) {
      throw new MappingNotFoundException( "Unable to open url stream [" + urlExternalForm + "]", e, origin );
    }
    return this;
  }
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.