org.hibernate.annotations.Table类的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(12.1k)|赞(0)|评价(0)|浏览(374)

本文整理了Java中org.hibernate.annotations.Table类的一些代码示例,展示了Table类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table类的具体详情如下:
包路径:org.hibernate.annotations.Table
类名称:Table

Table介绍

暂无

代码示例

代码示例来源:origin: hibernate/hibernate-orm

  1. @Entity(name = "TableWithComment")
  2. @javax.persistence.Table(name = "TABLE_WITH_COMMENT")
  3. @Table(appliesTo = "TABLE_WITH_COMMENT", comment = "comment snippet")
  4. public static class TableWithComment {
  5. @Id
  6. private int id;
  7. }

代码示例来源:origin: hibernate/hibernate-orm

  1. public void processComplementaryTableDefinitions(org.hibernate.annotations.Table table) {
  2. String appliedTable = table.appliesTo();
  3. Iterator tables = persistentClass.getTableClosureIterator();
  4. Table hibTable = null;
  5. );
  6. if ( !BinderHelper.isEmptyAnnotationValue( table.comment() ) ) hibTable.setComment( table.comment() );
  7. TableBinder.addIndexes( hibTable, table.indexes(), context );

代码示例来源:origin: hibernate/hibernate-orm

  1. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  2. if ( matchingTable != null ) {
  3. join.setSequentialSelect( FetchMode.JOIN != matchingTable.fetch() );
  4. join.setInverse( matchingTable.inverse() );
  5. join.setOptional( matchingTable.optional() );
  6. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlInsert().sql() ) ) {
  7. join.setCustomSQLInsert( matchingTable.sqlInsert().sql().trim(),
  8. matchingTable.sqlInsert().callable(),
  9. ExecuteUpdateResultCheckStyle.fromExternalName(
  10. matchingTable.sqlInsert().check().toString().toLowerCase(Locale.ROOT)
  11. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlUpdate().sql() ) ) {
  12. join.setCustomSQLUpdate( matchingTable.sqlUpdate().sql().trim(),
  13. matchingTable.sqlUpdate().callable(),
  14. ExecuteUpdateResultCheckStyle.fromExternalName(
  15. matchingTable.sqlUpdate().check().toString().toLowerCase(Locale.ROOT)
  16. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlDelete().sql() ) ) {
  17. join.setCustomSQLDelete( matchingTable.sqlDelete().sql().trim(),
  18. matchingTable.sqlDelete().callable(),
  19. ExecuteUpdateResultCheckStyle.fromExternalName(
  20. matchingTable.sqlDelete().check().toString().toLowerCase(Locale.ROOT)

代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all

  1. String tableName = table.appliesTo();
  2. Iterator tables = persistentClass.getTableClosureIterator();
  3. Table hibTable = null;
  4. );
  5. TableBinder.addIndexes( hibTable, table.indexes(), mappings );

代码示例来源:origin: hibernate/hibernate-orm

  1. private org.hibernate.annotations.Table findMatchingComplimentTableAnnotation(Join join) {
  2. String tableName = join.getTable().getQuotedName();
  3. org.hibernate.annotations.Table table = annotatedClass.getAnnotation( org.hibernate.annotations.Table.class );
  4. org.hibernate.annotations.Table matchingTable = null;
  5. if ( table != null && tableName.equals( table.appliesTo() ) ) {
  6. matchingTable = table;
  7. }
  8. else {
  9. Tables tables = annotatedClass.getAnnotation( Tables.class );
  10. if ( tables != null ) {
  11. for (org.hibernate.annotations.Table current : tables.value()) {
  12. if ( tableName.equals( current.appliesTo() ) ) {
  13. matchingTable = current;
  14. break;
  15. }
  16. }
  17. }
  18. }
  19. return matchingTable;
  20. }

代码示例来源:origin: hibernate/hibernate-orm

  1. private void setFKNameIfDefined(Join join) {
  2. // just awful..
  3. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  4. if ( matchingTable != null && !BinderHelper.isEmptyAnnotationValue( matchingTable.foreignKey().name() ) ) {
  5. ( (SimpleValue) join.getKey() ).setForeignKeyName( matchingTable.foreignKey().name() );
  6. }
  7. else {
  8. javax.persistence.SecondaryTable jpaSecondaryTable = findMatchingSecondaryTable( join );
  9. if ( jpaSecondaryTable != null ) {
  10. if ( jpaSecondaryTable.foreignKey().value() == ConstraintMode.NO_CONSTRAINT ) {
  11. ( (SimpleValue) join.getKey() ).setForeignKeyName( "none" );
  12. }
  13. else {
  14. ( (SimpleValue) join.getKey() ).setForeignKeyName( StringHelper.nullIfEmpty( jpaSecondaryTable.foreignKey().name() ) );
  15. ( (SimpleValue) join.getKey() ).setForeignKeyDefinition( StringHelper.nullIfEmpty( jpaSecondaryTable.foreignKey().foreignKeyDefinition() ) );
  16. }
  17. }
  18. }
  19. }

代码示例来源:origin: org.hibernate/hibernate-annotations

  1. private org.hibernate.annotations.Table findMatchingComplimentTableAnnotation(Join join) {
  2. String tableName = join.getTable().getQuotedName();
  3. org.hibernate.annotations.Table table = annotatedClass.getAnnotation( org.hibernate.annotations.Table.class );
  4. org.hibernate.annotations.Table matchingTable = null;
  5. if ( table != null && tableName.equals( table.appliesTo() ) ) {
  6. matchingTable = table;
  7. }
  8. else {
  9. Tables tables = annotatedClass.getAnnotation( Tables.class );
  10. if ( tables != null ) {
  11. for (org.hibernate.annotations.Table current : tables.value()) {
  12. if ( tableName.equals( current.appliesTo() ) ) {
  13. matchingTable = current;
  14. break;
  15. }
  16. }
  17. }
  18. }
  19. return matchingTable;
  20. }

代码示例来源:origin: org.hibernate/hibernate-annotations

  1. private void setFKNameIfDefined(Join join) {
  2. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  3. if ( matchingTable != null && !BinderHelper.isDefault( matchingTable.foreignKey().name() ) ) {
  4. ( (SimpleValue) join.getKey() ).setForeignKeyName( matchingTable.foreignKey().name() );
  5. }
  6. }

代码示例来源:origin: BroadleafCommerce/BroadleafCommerce

  1. @AdminPresentationClass(populateToOneFields = PopulateToOneFieldsEnum.TRUE, friendlyName = "TranslationImpl_baseTranslation")
  2. @Table(appliesTo = "BLC_TRANSLATION", indexes = {
  3. @Index(name = "TRANSLATION_INDEX", columnNames = { "ENTITY_TYPE", "ENTITY_ID", "FIELD_NAME", "LOCALE_CODE" })
  4. })

代码示例来源:origin: org.hibernate/hibernate-annotations

  1. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  2. if ( matchingTable != null ) {
  3. join.setSequentialSelect( FetchMode.JOIN != matchingTable.fetch() );
  4. join.setInverse( matchingTable.inverse() );
  5. join.setOptional( matchingTable.optional() );
  6. if ( !BinderHelper.isDefault( matchingTable.sqlInsert().sql() ) ) {
  7. join.setCustomSQLInsert( matchingTable.sqlInsert().sql().trim(),
  8. matchingTable.sqlInsert().callable(),
  9. ExecuteUpdateResultCheckStyle.parse( matchingTable.sqlInsert().check().toString().toLowerCase() )
  10. );
  11. if ( !BinderHelper.isDefault( matchingTable.sqlUpdate().sql() ) ) {
  12. join.setCustomSQLUpdate( matchingTable.sqlUpdate().sql().trim(),
  13. matchingTable.sqlUpdate().callable(),
  14. ExecuteUpdateResultCheckStyle.parse( matchingTable.sqlUpdate().check().toString().toLowerCase() )
  15. );
  16. if ( !BinderHelper.isDefault( matchingTable.sqlDelete().sql() ) ) {
  17. join.setCustomSQLDelete( matchingTable.sqlDelete().sql().trim(),
  18. matchingTable.sqlDelete().callable(),
  19. ExecuteUpdateResultCheckStyle.parse( matchingTable.sqlDelete().check().toString().toLowerCase() )
  20. );

代码示例来源:origin: org.hibernate/hibernate-annotations

  1. public void processComplementaryTableDefinitions(org.hibernate.annotations.Table table) {
  2. String appliedTable = table.appliesTo();
  3. Iterator tables = persistentClass.getTableClosureIterator();
  4. Table hibTable = null;
  5. );
  6. if ( !BinderHelper.isDefault( table.comment() ) ) hibTable.setComment( table.comment() );
  7. TableBinder.addIndexes( hibTable, table.indexes(), mappings );

代码示例来源:origin: org.hibernate.orm/hibernate-core

  1. private org.hibernate.annotations.Table findMatchingComplimentTableAnnotation(Join join) {
  2. String tableName = join.getTable().getQuotedName();
  3. org.hibernate.annotations.Table table = annotatedClass.getAnnotation( org.hibernate.annotations.Table.class );
  4. org.hibernate.annotations.Table matchingTable = null;
  5. if ( table != null && tableName.equals( table.appliesTo() ) ) {
  6. matchingTable = table;
  7. }
  8. else {
  9. Tables tables = annotatedClass.getAnnotation( Tables.class );
  10. if ( tables != null ) {
  11. for (org.hibernate.annotations.Table current : tables.value()) {
  12. if ( tableName.equals( current.appliesTo() ) ) {
  13. matchingTable = current;
  14. break;
  15. }
  16. }
  17. }
  18. }
  19. return matchingTable;
  20. }

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

  1. private void setFKNameIfDefined(Join join) {
  2. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  3. if ( matchingTable != null && !BinderHelper.isEmptyAnnotationValue( matchingTable.foreignKey().name() ) ) {
  4. ( (SimpleValue) join.getKey() ).setForeignKeyName( matchingTable.foreignKey().name() );
  5. }
  6. }

代码示例来源:origin: hibernate/hibernate-orm

  1. @SecondaryTable(name = "Cat2", uniqueConstraints = {@UniqueConstraint(columnNames = {"storyPart2"})})
  2. })
  3. @Table(appliesTo = "Cat", indexes = @Index(name = "secondname",
  4. columnNames = "secondName"), comment = "My cat table" )
  5. @Table(appliesTo = "Cat2", foreignKey = @ForeignKey(name="FK_CAT2_CAT"), fetch = FetchMode.SELECT,
  6. sqlInsert=@SQLInsert(sql="insert into Cat2(storyPart2, id) values(upper(?), ?)") )
  7. public class Cat implements Serializable {

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate

  1. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  2. if ( matchingTable != null ) {
  3. join.setSequentialSelect( FetchMode.JOIN != matchingTable.fetch() );
  4. join.setInverse( matchingTable.inverse() );
  5. join.setOptional( matchingTable.optional() );
  6. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlInsert().sql() ) ) {
  7. join.setCustomSQLInsert( matchingTable.sqlInsert().sql().trim(),
  8. matchingTable.sqlInsert().callable(),
  9. ExecuteUpdateResultCheckStyle.fromExternalName(
  10. matchingTable.sqlInsert().check().toString().toLowerCase()
  11. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlUpdate().sql() ) ) {
  12. join.setCustomSQLUpdate( matchingTable.sqlUpdate().sql().trim(),
  13. matchingTable.sqlUpdate().callable(),
  14. ExecuteUpdateResultCheckStyle.fromExternalName(
  15. matchingTable.sqlUpdate().check().toString().toLowerCase()
  16. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlDelete().sql() ) ) {
  17. join.setCustomSQLDelete( matchingTable.sqlDelete().sql().trim(),
  18. matchingTable.sqlDelete().callable(),
  19. ExecuteUpdateResultCheckStyle.fromExternalName(
  20. matchingTable.sqlDelete().check().toString().toLowerCase()

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

  1. public void processComplementaryTableDefinitions(org.hibernate.annotations.Table table) {
  2. String appliedTable = table.appliesTo();
  3. Iterator tables = persistentClass.getTableClosureIterator();
  4. Table hibTable = null;
  5. );
  6. if ( !BinderHelper.isEmptyAnnotationValue( table.comment() ) ) hibTable.setComment( table.comment() );
  7. TableBinder.addIndexes( hibTable, table.indexes(), mappings );

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

  1. private org.hibernate.annotations.Table findMatchingComplimentTableAnnotation(Join join) {
  2. String tableName = join.getTable().getQuotedName();
  3. org.hibernate.annotations.Table table = annotatedClass.getAnnotation( org.hibernate.annotations.Table.class );
  4. org.hibernate.annotations.Table matchingTable = null;
  5. if ( table != null && tableName.equals( table.appliesTo() ) ) {
  6. matchingTable = table;
  7. }
  8. else {
  9. Tables tables = annotatedClass.getAnnotation( Tables.class );
  10. if ( tables != null ) {
  11. for (org.hibernate.annotations.Table current : tables.value()) {
  12. if ( tableName.equals( current.appliesTo() ) ) {
  13. matchingTable = current;
  14. break;
  15. }
  16. }
  17. }
  18. }
  19. return matchingTable;
  20. }

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate

  1. private void setFKNameIfDefined(Join join) {
  2. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  3. if ( matchingTable != null && !BinderHelper.isEmptyAnnotationValue( matchingTable.foreignKey().name() ) ) {
  4. ( (SimpleValue) join.getKey() ).setForeignKeyName( matchingTable.foreignKey().name() );
  5. }
  6. }

代码示例来源:origin: hibernate/hibernate-orm

  1. @org.hibernate.annotations.Table(
  2. appliesTo = "person_details",
  3. sqlInsert = @SQLInsert(

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

  1. org.hibernate.annotations.Table matchingTable = findMatchingComplimentTableAnnotation( join );
  2. if ( matchingTable != null ) {
  3. join.setSequentialSelect( FetchMode.JOIN != matchingTable.fetch() );
  4. join.setInverse( matchingTable.inverse() );
  5. join.setOptional( matchingTable.optional() );
  6. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlInsert().sql() ) ) {
  7. join.setCustomSQLInsert( matchingTable.sqlInsert().sql().trim(),
  8. matchingTable.sqlInsert().callable(),
  9. ExecuteUpdateResultCheckStyle.fromExternalName(
  10. matchingTable.sqlInsert().check().toString().toLowerCase()
  11. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlUpdate().sql() ) ) {
  12. join.setCustomSQLUpdate( matchingTable.sqlUpdate().sql().trim(),
  13. matchingTable.sqlUpdate().callable(),
  14. ExecuteUpdateResultCheckStyle.fromExternalName(
  15. matchingTable.sqlUpdate().check().toString().toLowerCase()
  16. if ( !BinderHelper.isEmptyAnnotationValue( matchingTable.sqlDelete().sql() ) ) {
  17. join.setCustomSQLDelete( matchingTable.sqlDelete().sql().trim(),
  18. matchingTable.sqlDelete().callable(),
  19. ExecuteUpdateResultCheckStyle.fromExternalName(
  20. matchingTable.sqlDelete().check().toString().toLowerCase()

相关文章