|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 |
javax.persistence.spi Interface PersistenceUnitInfo
public interface PersistenceUnitInfo
Interface implemented by the container and used by the persistence provider
when creating an EntityManagerFactory
.
- 从以下版本开始:
- Java Persistence 1.0
方法摘要 | |
---|---|
void |
addTransformer(ClassTransformer transformer)
Add a transformer supplied by the provider that will be called for every new class definition or class redefinition that gets loaded by the loader returned by the getClassLoader() method. |
boolean |
excludeUnlistedClasses()
Returns whether classes in the root of the persistence unit that have not been explicitly listed are to be included in the set of managed classes. |
ClassLoader |
getClassLoader()
Returns ClassLoader that the provider may use to load any classes, resources, or open URLs. |
List<URL> |
getJarFileUrls()
Returns a list of URLs for the jar files or exploded jar file directories that the persistence provider must examine for managed classes of the persistence unit. |
DataSource |
getJtaDataSource()
Returns the JTA-enabled data source to be used by the persistence provider. |
List<String> |
getManagedClassNames()
Returns the list of the names of the classes that the persistence provider must add it to its set of managed classes. |
List<String> |
getMappingFileNames()
Returns the list of mapping file names that the persistence provider must load to determine the mappings for the entity classes. |
ClassLoader |
getNewTempClassLoader()
Return a new instance of a ClassLoader that the provider may use to temporarily load any classes, resources, or open URLs. |
DataSource |
getNonJtaDataSource()
Returns the non-JTA-enabled data source to be used by the persistence provider for accessing data outside a JTA transaction. |
String |
getPersistenceProviderClassName()
Returns the fully qualified name of the persistence provider implementation class. |
String |
getPersistenceUnitName()
Returns the name of the persistence unit. |
URL |
getPersistenceUnitRootUrl()
Returns the URL for the jar file or directory that is the root of the persistence unit. |
Properties |
getProperties()
Returns properties object. |
PersistenceUnitTransactionType |
getTransactionType()
Returns the transaction type of the entity managers created by the EntityManagerFactory. |
方法详细信息 |
---|
getPersistenceUnitName
String getPersistenceUnitName()
- Returns the name of the persistence unit. Corresponds to the name attribute
in the persistence.xml file.
- 返回:
- The name of the persistence unit. Corresponds to the name attribute in the persistence.xml file.
getPersistenceProviderClassName
String getPersistenceProviderClassName()
- Returns the fully qualified name of the persistence provider
implementation class. Corresponds to the <provider> element in
the persistence.xml file.
- 返回:
- The fully qualified name of the persistence provider implementation class. Corresponds to the <provider> element in the persistence.xml file.
getTransactionType
PersistenceUnitTransactionType getTransactionType()
- Returns the transaction type of the entity managers created by the
EntityManagerFactory. The transaction type corresponds to the
transaction-type attribute in the persistence.xml file.
- 返回:
- The transaction type of the entity managers created by the EntityManagerFactory. The transaction type corresponds to the transaction-type attribute in the persistence.xml file.
getJtaDataSource
DataSource getJtaDataSource()
- Returns the JTA-enabled data source to be used by the persistence
provider. The data source corresponds to the <jta-data-source>
element in the persistence.xml file or is provided at deployment
or by the container.
- 返回:
- the JTA-enabled data source to be used by the persistence provider. The data source corresponds to the <jta-data-source> element in the persistence.xml file or is provided at deployment or by the container.
getNonJtaDataSource
DataSource getNonJtaDataSource()
- Returns the non-JTA-enabled data source to be used by the persistence
provider for accessing data outside a JTA transaction. The data
source corresponds to the named <non-jta-data-source> element in
the persistence.xml file or provided at deployment or by the
container.
- 返回:
- The non-JTA-enabled data source to be used by the persistence provider for accessing data outside a JTA transaction. The data source corresponds to the named <non-jta-data-source> element in the persistence.xml file or provided at deployment or by the container.
getMappingFileNames
List<String> getMappingFileNames()
- Returns the list of mapping file names that the persistence provider must
load to determine the mappings for the entity classes. The
mapping files must be in the standard XML mapping format, be
uniquely named and be resource-loadable from the application
classpath. This list will not include the orm.xml file if one was
specified. Each mapping file name corresponds to a <mapping-file>
element in the persistence.xml file.
- 返回:
- The list of mapping file names that the persistence provider must load to determine the mappings for the entity classes. The mapping files must be in the standard XML mapping format, be uniquely named and be resource-loadable from the application classpath. This list will not include the orm.xml file if one was specified. Each mapping file name corresponds to a <mapping-file> element in the persistence.xml file.
getJarFileUrls
List<URL> getJarFileUrls()
- Returns a list of URLs for the jar files or exploded jar
file directories that the persistence provider must examine
for managed classes of the persistence unit. Each URL
corresponds to a named
element in the persistence.xml file. A URL will either be a file: URL referring to a jar file or referring to a directory that contains an exploded jar file, or some other URL from which an InputStream in jar format can be obtained. - 返回:
- a list of URL objects referring to jar files or directories.
getPersistenceUnitRootUrl
URL getPersistenceUnitRootUrl()
- Returns the URL for the jar file or directory that is the
root of the persistence unit. (If the persistence unit is
rooted in the WEB-INF/classes directory, this will be the
URL of that directory.)
The URL will either be a file: URL referring to a jar file
or referring to a directory that contains an exploded jar
file, or some other URL from which an InputStream in jar
format can be obtained.
- 返回:
- a URL referring to a jar file or directory.
getManagedClassNames
List<String> getManagedClassNames()
- Returns the list of the names of the classes that the persistence
provider must add it to its set of managed classes. Each name
corresponds to a named <class> element in the persistence.xml
file.
- 返回:
- The list of the names of the classes that the persistence provider must add it to its set of managed classes. Each name corresponds to a named <class> element in the persistence.xml file.
excludeUnlistedClasses
boolean excludeUnlistedClasses()
- Returns whether classes in the root of the persistence unit that have not
been explicitly listed are to be included in the set of managed
classes. This value corresponds to the <exclude-unlisted-classes>
element in the persistence.xml file.
- 返回:
- Whether classes in the root of the persistence unit that have not been explicitly listed are to be included in the set of managed classes. This value corresponds to the <exclude-unlisted-classes> element in the persistence.xml file.
getProperties
Properties getProperties()
- Returns properties object. Each property corresponds to a <property>
element in the persistence.xml file
- 返回:
- Properties object. Each property corresponds to a <property> element in the persistence.xml file
getClassLoader
ClassLoader getClassLoader()
- Returns ClassLoader that the provider may use to load any classes,
resources, or open URLs.
- 返回:
- ClassLoader that the provider may use to load any classes, resources, or open URLs.
addTransformer
void addTransformer(ClassTransformer transformer)
- Add a transformer supplied by the provider that will be called for every
new class definition or class redefinition that gets loaded by
the loader returned by the
getClassLoader()
method. The transformer has no effect on the result returned by thegetNewTempClassLoader()
method. Classes are only transformed once within the same classloading scope, regardless of how many persistence units they may be a part of. - 参数:
transformer
- A provider-supplied transformer that the Container invokes at class-(re)definition time
getNewTempClassLoader
ClassLoader getNewTempClassLoader()
- Return a new instance of a ClassLoader that the provider
may use to temporarily load any classes, resources, or
open URLs. The scope and classpath of this loader is
exactly the same as that of the loader returned by
getClassLoader()
. None of the classes loaded by this class loader will be visible to application components. The provider may only use this ClassLoader within the scope of thePersistenceProvider.createContainerEntityManagerFactory(javax.persistence.spi.PersistenceUnitInfo, java.util.Map)
call. - 返回:
- Temporary ClassLoader with same visibility as current loader
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 |
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.