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

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

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

Table.schema介绍

暂无

代码示例

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

  1. String schemaName = table.schema();
  2. if (schemaName != null && schemaName.indexOf('@') > 0)

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

  1. String schemaName = table.schema();
  2. if (schemaName != null && schemaName.indexOf('@') > 0)

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

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

代码示例来源: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. schemaName = superClazzType.getJavaType().getAnnotation(Table.class).schema();

代码示例来源: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: 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. tabAnn = clazzToProcess.getAnnotation( javax.persistence.Table.class );
  2. table = tabAnn.name();
  3. schema = tabAnn.schema();
  4. catalog = tabAnn.catalog();
  5. uniqueConstraints = TableBinder.buildUniqueConstraintHolders( tabAnn.uniqueConstraints() );

代码示例来源:origin: otaviojava/Easy-Cassandra

  1. /**
  2. * return the chema looking to class.
  3. * @param class1 the class
  4. * @return the schema
  5. */
  6. public String getSchema(Class<?> class1) {
  7. Table columnFamily = (Table) class1.getAnnotation(Table.class);
  8. if (columnFamily != null) {
  9. return columnFamily.schema();
  10. }
  11. return "";
  12. }

代码示例来源:origin: com.synaptix/SynaptixEntity

  1. @Override
  2. public IClassExtensionDescriptor createClassExtensionDescriptor(Class<? extends IComponent> componentClass) {
  3. IClassExtensionDescriptor classExtensionDescriptor = null;
  4. if (IComponent.class.isAssignableFrom(componentClass)) {
  5. Table entity = componentClass.getAnnotation(Table.class);
  6. if (entity != null) {
  7. classExtensionDescriptor = new DatabaseClassExtensionDescriptor(entity.schema(), entity.name());
  8. }
  9. }
  10. return classExtensionDescriptor;
  11. }

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

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

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

  1. javax.persistence.Table tabAnn = clazzToProcess.getAnnotation( javax.persistence.Table.class );
  2. table = tabAnn.name();
  3. schema = tabAnn.schema();
  4. catalog = tabAnn.catalog();
  5. uniqueConstraints = TableBinder.buildUniqueConstraintHolders( tabAnn.uniqueConstraints() );

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

  1. /**
  2. * Set class table.
  3. */
  4. private void parseTable(ClassMapping cm, Table table) {
  5. String tableName = toTableName(table.schema(), table.name());
  6. if (tableName != null)
  7. cm.getMappingInfo().setTableName(tableName);
  8. for (UniqueConstraint uniqueConstraint:table.uniqueConstraints()) {
  9. Unique unique = newUnique(cm, null, uniqueConstraint.columnNames());
  10. cm.getMappingInfo().addUnique(unique);
  11. }
  12. }

代码示例来源:origin: org.apache.openjpa/openjpa-persistence-jdbc

  1. /**
  2. * Set class table.
  3. */
  4. private void parseTable(ClassMapping cm, Table table) {
  5. if (cm.isAbstract())
  6. throw new UserException(_loc.get("table-not-allowed", cm));
  7. DBIdentifier tName = toTableIdentifier(table.schema(), table.name());
  8. if (!DBIdentifier.isNull(tName)) {
  9. cm.getMappingInfo().setTableIdentifier(tName);
  10. }
  11. addUniqueConstraints(tName.getName(), cm, cm.getMappingInfo(),
  12. table.uniqueConstraints());
  13. }

相关文章