javax.persistence.Table.name()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(7.2k)|赞(0)|评价(0)|浏览(532)

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

Table.name介绍

暂无

代码示例

代码示例来源:origin: abel533/Mapper

  1. public void setTable(Table table) {
  2. this.name = table.name();
  3. this.catalog = table.catalog();
  4. this.schema = table.schema();
  5. }
  6. }

代码示例来源:origin: abel533/Mapper

  1. public void setTable(Table table) {
  2. this.name = table.name();
  3. this.catalog = table.catalog();
  4. this.schema = table.schema();
  5. }
  6. }

代码示例来源:origin: abel533/Mapper

  1. if (entityClass.isAnnotationPresent(Table.class)) {
  2. Table table = entityClass.getAnnotation(Table.class);
  3. if (!"".equals(table.name())) {
  4. entityTable = new EntityTable(entityClass);
  5. entityTable.setTable(table);

代码示例来源:origin: abel533/Mapper

  1. if (entityClass.isAnnotationPresent(Table.class)) {
  2. Table table = entityClass.getAnnotation(Table.class);
  3. if (!"".equals(table.name())) {
  4. entityTable = new EntityTable(entityClass);
  5. entityTable.setTable(table);

代码示例来源:origin: hs-web/hsweb-framework

  1. tableMetaData.setName(table.name());

代码示例来源:origin: stackoverflow.com

  1. import javax.persistence.Table;
  2. .....
  3. Class<?> c = User.class;
  4. Table table = c.getAnnotation(Table.class);
  5. String tableName = table.name();

代码示例来源:origin: stackoverflow.com

  1. Table table = Entity.class.getAnnotation(Table.class);
  2. String tableName = table.name();

代码示例来源:origin: apache/cloudstack

  1. public static final String getTableName(Class<?> clazz) {
  2. Table table = clazz.getAnnotation(Table.class);
  3. return table != null ? table.name() : clazz.getSimpleName();
  4. }

代码示例来源:origin: kiegroup/jbpm

  1. public void onSubtaskCompletionAutoCompleteParentStrategyWithLotsOfTasks() throws Exception {
  2. String tableName = TaskImpl.class.getAnnotation(Table.class).name();

代码示例来源:origin: apache/cloudstack

  1. @DB()
  2. protected void setField(final Object entity, final ResultSet rs, ResultSetMetaData meta, final int index) throws SQLException {
  3. Attribute attr = _allColumns.get(new Pair<String, String>(meta.getTableName(index), meta.getColumnName(index)));
  4. if (attr == null) {
  5. // work around for mysql bug to return original table name instead of view name in db view case
  6. Table tbl = entity.getClass().getSuperclass().getAnnotation(Table.class);
  7. if (tbl != null) {
  8. attr = _allColumns.get(new Pair<String, String>(tbl.name(), meta.getColumnLabel(index)));
  9. }
  10. }
  11. assert (attr != null) : "How come I can't find " + meta.getCatalogName(index) + "." + meta.getColumnName(index);
  12. setField(entity, attr.field, rs, index);
  13. }

代码示例来源:origin: hector-client/hector

  1. private <T> void parseTableAnnotation(ClassCacheMgr cacheMgr, Table anno, CFMappingDef<T> cfMapDef) {
  2. CFMappingDef<?> tmpDef;
  3. // column family can only be mapped to one class (base class)
  4. if (null != (tmpDef = cacheMgr.getCfMapDef(anno.name(), false))) {
  5. throw new HectorObjectMapperException(
  6. "classes, "
  7. + cfMapDef.getEffectiveClass().getName()
  8. + " and "
  9. + tmpDef.getEffectiveClass().getName()
  10. + ", are both mapped to ColumnFamily, "
  11. + tmpDef.getEffectiveColFamName()
  12. + ". Can only have one Class/ColumnFamily mapping - if multiple classes can be derived from a single ColumnFamily, use @"
  13. + Inheritance.class.getSimpleName());
  14. }
  15. cfMapDef.setColFamName(anno.name());
  16. }

代码示例来源:origin: Impetus/Kundera

  1. private void setSchemaAndPU(Class<?> clazz, EntityMetadata metadata)
  2. {
  3. Table table = clazz.getAnnotation(Table.class);
  4. if (table != null)
  5. {
  6. // log.debug("In set schema and pu, class is " + clazz.getName());
  7. // Set Name of persistence object
  8. metadata.setTableName(!StringUtils.isBlank(table.name()) ?
  9. table.name() : clazz.getSimpleName());
  10. // Add named/native query related application metadata.
  11. addNamedNativeQueryMetadata(clazz);
  12. // set schema name and persistence unit name (if provided)
  13. String schemaStr = table.schema();
  14. MetadataUtils.setSchemaAndPersistenceUnit(metadata, schemaStr, puProperties);
  15. }
  16. if (metadata.getPersistenceUnit() == null)
  17. {
  18. // log.debug("In set schema and pu, pu is " + persistenceUnit);
  19. metadata.setPersistenceUnit(persistenceUnit);
  20. }
  21. }

代码示例来源:origin: Impetus/Kundera

  1. @Override
  2. public void validateFieldAnnotation(Annotation annotation, Field field, ManagedType managedType)
  3. {
  4. List<String> tables = ((DefaultEntityAnnotationProcessor) ((AbstractManagedType) managedType)
  5. .getEntityAnnotation()).getSecondaryTablesName();
  6. Annotation primaryTableannotation = ((AbstractManagedType) managedType).getEntityAnnotation().getAnnotation(
  7. Table.class.getName());
  8. String primaryTableName = "";
  9. if (primaryTableannotation != null)
  10. {
  11. primaryTableName = ((Table) primaryTableannotation).name();
  12. }
  13. String tableNameOfColumn = getTableNameOfColumn();
  14. if (tableNameOfColumn != null && !tables.contains(tableNameOfColumn) && !primaryTableName.isEmpty()
  15. && !primaryTableName.equals(tableNameOfColumn))
  16. {
  17. throw new InvalidEntityDefinitionException("Inavalid table " + tableNameOfColumn + " for field " + field);
  18. }
  19. }

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

  1. Table table = getPhysicalAnnotation( Table.class );
  2. if ( table != null ) {
  3. annotation.setValue( "name", table.name() );
  4. annotation.setValue( "schema", table.schema() );
  5. annotation.setValue( "catalog", table.catalog() );

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

  1. /**
  2. * Gets the table name from annotation.
  3. */
  4. protected TableName getTableNameFromAnnotation(Class<?> beanClass) {
  5. final Table t = AnnotationUtil.findAnnotationRecursive(beanClass, Table.class);
  6. // Take the annotation if defined
  7. if (t != null && !isEmpty(t.name())) {
  8. // Note: empty catalog and schema are converted to null
  9. // Only need to convert quoted identifiers from annotations
  10. return new TableName(quoteIdentifiers(t.catalog()), quoteIdentifiers(t.schema()), quoteIdentifiers(t.name()));
  11. }
  12. // No annotation
  13. return null;
  14. }

代码示例来源:origin: Impetus/Kundera

  1. /**
  2. * Sets the schema and pu.
  3. *
  4. * @param clazz
  5. * the clazz
  6. * @param metadata
  7. * the metadata
  8. */
  9. private static void setSchemaAndPU(Class<?> clazz, EntityMetadata metadata)
  10. {
  11. Table table = clazz.getAnnotation(Table.class);
  12. if (table != null)
  13. {
  14. metadata.setTableName(!StringUtils.isBlank(table.name()) ? table.name() : clazz.getSimpleName());
  15. String schemaStr = table.schema();
  16. MetadataUtils.setSchemaAndPersistenceUnit(metadata, schemaStr,
  17. em.getEntityManagerFactory().getProperties());
  18. }
  19. else
  20. {
  21. metadata.setTableName(clazz.getSimpleName());
  22. metadata.setSchema((String) em.getEntityManagerFactory().getProperties().get("kundera.keyspace"));
  23. }
  24. if (metadata.getPersistenceUnit() == null)
  25. {
  26. metadata.setPersistenceUnit(getPersistenceUnit());
  27. }
  28. }

代码示例来源:origin: Impetus/Kundera

  1. tableName = superClazzType.getJavaType().getAnnotation(Table.class).name();
  2. schemaName = superClazzType.getJavaType().getAnnotation(Table.class).schema();

代码示例来源:origin: jamesagnew/hapi-fhir

  1. private static void scan(AnnotatedElement theAnnotatedElement, Set<String> theNames, boolean theIsSuperClass) {
  2. Table table = theAnnotatedElement.getAnnotation(Table.class);
  3. if (table != null) {
  4. assertNotADuplicateName(table.name(), theNames);
  5. for (UniqueConstraint nextConstraint : table.uniqueConstraints()) {
  6. assertNotADuplicateName(nextConstraint.name(), theNames);

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

  1. if ( clazzToProcess.isAnnotationPresent( javax.persistence.Table.class ) ) {
  2. tabAnn = clazzToProcess.getAnnotation( javax.persistence.Table.class );
  3. table = tabAnn.name();
  4. schema = tabAnn.schema();
  5. catalog = tabAnn.catalog();

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

  1. Table table = getJavaAnnotation( Table.class );
  2. if ( table != null ) {
  3. annotation.setValue( "name", table.name() );
  4. annotation.setValue( "schema", table.schema() );
  5. annotation.setValue( "catalog", table.catalog() );

相关文章