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

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

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

Table.catalog介绍

暂无

代码示例

代码示例来源: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: hibernate/hibernate-orm

  1. annotation.setValue( "name", table.name() );
  2. annotation.setValue( "schema", table.schema() );
  3. annotation.setValue( "catalog", table.catalog() );
  4. annotation.setValue( "uniqueConstraints", table.uniqueConstraints() );
  5. annotation.setValue( "indexes", table.indexes() );

代码示例来源: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: hibernate/hibernate-orm

  1. table = tabAnn.name();
  2. schema = tabAnn.schema();
  3. catalog = tabAnn.catalog();
  4. uniqueConstraints = TableBinder.buildUniqueConstraintHolders( tabAnn.uniqueConstraints() );

代码示例来源:origin: SAP/olingo-jpa-processor-v4

  1. boolean dbEquals(final String dbCatalog, final String dbSchema, final String dbTableName) {
  2. final AnnotatedElement a = jpaManagedType.getJavaType();
  3. Table t = null;
  4. if (a != null)
  5. t = a.getAnnotation(Table.class);
  6. if (t == null)
  7. return (dbCatalog == null || dbCatalog.isEmpty())
  8. && (dbSchema == null || dbSchema.isEmpty())
  9. && dbTableName.equals(getTableName());
  10. else
  11. return dbCatalog.equals(t.catalog())
  12. && dbSchema.equals(t.schema())
  13. && dbTableName.equals(t.name());
  14. }

代码示例来源:origin: com.github.abel533/mapper

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

代码示例来源:origin: tk.mybatis/mapper-core

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

代码示例来源:origin: com.hand.hap.cloud/hap-mybatis-mapper-starter

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

代码示例来源:origin: zhang-rf/mybatis-boost

  1. public static String getTableName(Class<?> type, NameAdaptor converter) {
  2. return tableNameCache.computeIfAbsent(type, k -> {
  3. if (type.isAnnotationPresent(Table.class)) {
  4. Table table = type.getAnnotation(Table.class);
  5. String catalog = table.catalog();
  6. if (StringUtils.isEmpty(catalog)) {
  7. catalog = table.schema();
  8. }
  9. if (StringUtils.isEmpty(catalog)) {
  10. return table.name();
  11. } else {
  12. return String.format("`%s`.`%s`", catalog, table.name());
  13. }
  14. } else {
  15. return converter.adapt(type.getSimpleName());
  16. }
  17. });
  18. }

代码示例来源:origin: com.ibeetl/beetlsql

  1. protected void setTable(Table table) {
  2. name = table.name();
  3. if (StringKit.isNotBlank(table.schema())) {
  4. name = table.schema() + "." + name;
  5. } else if (StringKit.isNotBlank(table.catalog())) {
  6. name = table.catalog() + "." + name;
  7. }
  8. }
  9. protected void addProp(String col, String prop) {

代码示例来源:origin: BatooOrg/BatooJPA

  1. /**
  2. * @param locator
  3. * the java locator
  4. * @param annotation
  5. * the annotation
  6. *
  7. * @since 2.0.0
  8. */
  9. public TableMetadataImpl(AbstractLocator locator, Table annotation) {
  10. super();
  11. this.locator = locator;
  12. this.catalog = annotation.catalog();
  13. this.schema = annotation.schema();
  14. this.name = annotation.name();
  15. for (final UniqueConstraint constraint : annotation.uniqueConstraints()) {
  16. this.uniqueConstraints.add(new UniqueConstraintMetadataImpl(locator, constraint));
  17. }
  18. }

代码示例来源:origin: org.batoo.jpa/batoo-jpa

  1. /**
  2. * @param locator
  3. * the java locator
  4. * @param annotation
  5. * the annotation
  6. *
  7. * @since 2.0.0
  8. */
  9. public TableMetadataImpl(AbstractLocator locator, Table annotation) {
  10. super();
  11. this.locator = locator;
  12. this.catalog = annotation.catalog();
  13. this.schema = annotation.schema();
  14. this.name = annotation.name();
  15. for (final UniqueConstraint constraint : annotation.uniqueConstraints()) {
  16. this.uniqueConstraints.add(new UniqueConstraintMetadataImpl(locator, constraint));
  17. }
  18. }

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

  1. annotation.setValue( "name", table.name() );
  2. annotation.setValue( "schema", table.schema() );
  3. annotation.setValue( "catalog", table.catalog() );
  4. annotation.setValue( "uniqueConstraints", table.uniqueConstraints() );

代码示例来源:origin: toplink.essentials/toplink-essentials

  1. /**
  2. * INTERNAL:
  3. */
  4. public MetadataTable(Table table, MetadataLogger logger) {
  5. this(logger);
  6. if (table != null) {
  7. m_name = table.name();
  8. m_schema = table.schema();
  9. m_catalog = table.catalog();
  10. processName();
  11. processUniqueConstraints(table.uniqueConstraints());
  12. }
  13. }

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

  1. table = tabAnn.name();
  2. schema = tabAnn.schema();
  3. catalog = tabAnn.catalog();
  4. uniqueConstraints = TableBinder.buildUniqueConstraintHolders( tabAnn.uniqueConstraints() );

代码示例来源:origin: io.ebean/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: org.avaje.ebean/ebean

  1. /**
  2. * Gets the table name from annotation.
  3. */
  4. protected TableName getTableNameFromAnnotation(Class<?> beanClass) {
  5. final Table t = findTableAnnotation(beanClass);
  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: org.avaje/ebean

  1. /**
  2. * Gets the table name from annotation.
  3. */
  4. protected TableName getTableNameFromAnnotation(Class<?> beanClass) {
  5. final Table t = findTableAnnotation(beanClass);
  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()),
  11. quoteIdentifiers(t.name()));
  12. }
  13. // No annotation
  14. return null;
  15. }

代码示例来源:origin: org.avaje.ebeanorm/avaje-ebeanorm-api

  1. /**
  2. * Gets the table name from annotation.
  3. */
  4. protected TableName getTableNameFromAnnotation(Class<?> beanClass) {
  5. final Table t = findTableAnnotation(beanClass);
  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()),
  11. quoteIdentifiers(t.name()));
  12. }
  13. // No annotation
  14. return null;
  15. }

相关文章