Package org.hibernate.cfg

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


   *  The same issue exists with getLogicalColumnName()
   */
  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
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 ) {
View Full Code Here

*/
public class AccessMappingTest extends TestCase {

  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." );
    }
View Full Code Here

public class AccessMappingTest extends TestCase {

  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 ) {
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 );
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(
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 );
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(
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 );
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(
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.