Package org.hibernate.cfg

Examples of org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory()


  public void testBackquotes() {
    try {
      AnnotationConfiguration config = new AnnotationConfiguration();
      config.addAnnotatedClass(Bug.class);
      config.addAnnotatedClass(Category.class);
      config.buildSessionFactory();
    }
    catch( Exception e ) {
      StringWriter writer = new StringWriter();
      e.printStackTrace(new PrintWriter(writer));
      log.debug(writer.toString());
View Full Code Here


  public void testInvalidReferenceToQuotedTableName() {
      try {
        AnnotationConfiguration config = new AnnotationConfiguration();
        config.addAnnotatedClass(Printer.class);
        config.addAnnotatedClass(PrinterCable.class);
        config.buildSessionFactory();
        fail("expected MappingException to be thrown");
      }
      //we WANT MappingException to be thrown
        catch( MappingException e ) {
          assertTrue("MappingException was thrown", true);
View Full Code Here

  public void testInconsistentAnnotationPlacement() throws Exception {
    AnnotationConfiguration cfg = new AnnotationConfiguration();
    cfg.addAnnotatedClass( Course1.class );
    cfg.addAnnotatedClass( Student.class );
    try {
      cfg.buildSessionFactory();
      fail( "@Id and @OneToMany are not placed consistently in test entities. SessionFactory creation should fail." );
    }
    catch ( MappingException e ) {
      // success
    }
View Full Code Here

  public void testFieldAnnotationPlacement() throws Exception {
    AnnotationConfiguration cfg = new AnnotationConfiguration();
    Class<?> classUnderTest = Course6.class;
    cfg.addAnnotatedClass( classUnderTest );
    cfg.addAnnotatedClass( Student.class );
    SessionFactoryImplementor factory = ( SessionFactoryImplementor ) cfg.buildSessionFactory();
    EntityMetamodel metaModel = factory.getEntityPersister( classUnderTest.getName() )
        .getEntityMetamodel();
    PojoEntityTuplizer tuplizer = ( PojoEntityTuplizer ) metaModel.getTuplizer( EntityMode.POJO );
    assertTrue(
        "Field access should be used.",
View Full Code Here

  public void testPropertyAnnotationPlacement() throws Exception {
    AnnotationConfiguration cfg = new AnnotationConfiguration();
    Class<?> classUnderTest = Course7.class;
    cfg.addAnnotatedClass( classUnderTest );
    cfg.addAnnotatedClass( Student.class );
    SessionFactoryImplementor factory = ( SessionFactoryImplementor ) cfg.buildSessionFactory();
    EntityMetamodel metaModel = factory.getEntityPersister( classUnderTest.getName() )
        .getEntityMetamodel();
    PojoEntityTuplizer tuplizer = ( PojoEntityTuplizer ) metaModel.getTuplizer( EntityMode.POJO );
    assertTrue(
        "Property access should be used.",
View Full Code Here

  public void testExplicitPropertyAccessAnnotationsOnProperty() throws Exception {
    AnnotationConfiguration cfg = new AnnotationConfiguration();
    Class<?> classUnderTest = Course2.class;
    cfg.addAnnotatedClass( classUnderTest );
    cfg.addAnnotatedClass( Student.class );
    SessionFactoryImplementor factory = ( SessionFactoryImplementor ) cfg.buildSessionFactory();
    EntityMetamodel metaModel = factory.getEntityPersister( classUnderTest.getName() )
        .getEntityMetamodel();
    PojoEntityTuplizer tuplizer = ( PojoEntityTuplizer ) metaModel.getTuplizer( EntityMode.POJO );
    assertTrue(
        "Property access should be used.",
View Full Code Here

  public void testExplicitPropertyAccessAnnotationsOnField() throws Exception {
    AnnotationConfiguration cfg = new AnnotationConfiguration();
    cfg.addAnnotatedClass( Course4.class );
    cfg.addAnnotatedClass( Student.class );
    try {
      cfg.buildSessionFactory();
      fail( "@Id and @OneToMany are not placed consistently in test entities. SessionFactory creation should fail." );
    }
    catch ( MappingException e ) {
      // success
    }
View Full Code Here

  public void testExplicitPropertyAccessAnnotationsWithHibernateStyleOverride() throws Exception {
    AnnotationConfiguration cfg = new AnnotationConfiguration();
    Class<?> classUnderTest = Course3.class;
    cfg.addAnnotatedClass( classUnderTest );
    cfg.addAnnotatedClass( Student.class );
    SessionFactoryImplementor factory = ( SessionFactoryImplementor ) cfg.buildSessionFactory();
    EntityMetamodel metaModel = factory.getEntityPersister( classUnderTest.getName() )
        .getEntityMetamodel();
    PojoEntityTuplizer tuplizer = ( PojoEntityTuplizer ) metaModel.getTuplizer( EntityMode.POJO );
    assertTrue(
        "Field access should be used.",
View Full Code Here

  public void testExplicitPropertyAccessAnnotationsWithJpaStyleOverride() throws Exception {
    AnnotationConfiguration cfg = new AnnotationConfiguration();
    Class<?> classUnderTest = Course5.class;
    cfg.addAnnotatedClass( classUnderTest );
    cfg.addAnnotatedClass( Student.class );
    SessionFactoryImplementor factory = ( SessionFactoryImplementor ) cfg.buildSessionFactory();
    EntityMetamodel metaModel = factory.getEntityPersister( classUnderTest.getName() )
        .getEntityMetamodel();
    PojoEntityTuplizer tuplizer = ( PojoEntityTuplizer ) metaModel.getTuplizer( EntityMode.POJO );
    assertTrue(
        "Field access should be used.",
View Full Code Here

    AnnotationConfiguration cfg = new AnnotationConfiguration();
    Class<?> classUnderTest = User.class;
    cfg.addAnnotatedClass( classUnderTest );
    cfg.addAnnotatedClass( Person.class );
    cfg.addAnnotatedClass( Being.class );
    SessionFactoryImplementor factory = ( SessionFactoryImplementor ) cfg.buildSessionFactory();
    EntityMetamodel metaModel = factory.getEntityPersister( classUnderTest.getName() )
        .getEntityMetamodel();
    PojoEntityTuplizer tuplizer = ( PojoEntityTuplizer ) metaModel.getTuplizer( EntityMode.POJO );
    assertTrue(
        "Field access should be used since the default access mode gets inherited",
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.