Module org.eclipse.persistence.jpa
Class XMLMetadataSource
java.lang.Object
org.eclipse.persistence.jpa.metadata.MetadataSourceAdapter
org.eclipse.persistence.jpa.metadata.XMLMetadataSource
- All Implemented Interfaces:
MetadataSource
- Direct Known Subclasses:
MetadataSource
Purpose: Support reading metadata for a persistence unit in an XML format from a URL and if the property is undefined, it will look for a file.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetConfigPropertyLogDebug
(String propertyName, Map<String, ?> properties, SessionLog log) Check the provided map for an object with the given name.getEntityMappings
(Map<String, Object> properties, ClassLoader classLoader, SessionLog log) This method is responsible for returning the object representation of the MetadataSource.getEntityMappingsReader
(Map<String, Object> properties, ClassLoader classLoader, SessionLog log) This method returns a Reader for an EclipseLink-ORM.xml.protected static URL
getFileURL
(String fileName, ClassLoader classLoader, SessionLog log) getPropertyOverrides
(Map<String, Object> properties, ClassLoader classLoader, SessionLog log) PUBLIC: This method is responsible for returning additional persistence unit property overrides.Used by getEntityMappings when creating the XMLEntityMappings as a way of describing where it was read from.
-
Constructor Details
-
XMLMetadataSource
public XMLMetadataSource()Default constructor.
-
-
Method Details
-
getEntityMappingsReader
public Reader getEntityMappingsReader(Map<String, Object> properties, ClassLoader classLoader, SessionLog log) This method returns a Reader for an EclipseLink-ORM.xml. It will use the PersistenceUnitProperties.METADATA_SOURCE_XML_URL property if available to create an InputStreamReader from a URL, and if not available, use the PersistenceUnitProperties.METADATA_SOURCE_XML_FILE property will be used to get a file resource from the classloader. It will throw a ValidationException if no reader can be returned.- Parameters:
log
- - SessionLog used for status messages.- Returns:
- Reader - a InputStreamReader with data in the form of an EclipseLink-orm.xml
- See Also:
-
getEntityMappings
public XMLEntityMappings getEntityMappings(Map<String, Object> properties, ClassLoader classLoader, SessionLog log) This method is responsible for returning the object representation of the MetadataSource. This implementation makes a call to getEntityMappingsReader to get a Reader which is passed to an XMLUnmarshaller, and closes the reader in a finally block.- Specified by:
getEntityMappings
in interfaceMetadataSource
- Overrides:
getEntityMappings
in classMetadataSourceAdapter
- Returns:
- XMLEntityMappings - object representation of the EclipseLink-orm.xml for this repository
-
getRepositoryName
Used by getEntityMappings when creating the XMLEntityMappings as a way of describing where it was read from. Currently returns the current class's simple name.- Returns:
- String - repository name to store in the XMLEntityMappings returned from getEntityMappings
-
getPropertyOverrides
public Map<String,Object> getPropertyOverrides(Map<String, Object> properties, ClassLoader classLoader, SessionLog log) PUBLIC: This method is responsible for returning additional persistence unit property overrides. It is called on initial deployment of the persistence unit and when the persistence unit is reloaded to allow customization of the persistence unit above and beyond what is packaged in the persistence.xml and what is code into the application.IMPORTANT: Although any property can be changed using this approach it is important that users of this feature ensure compatible configurations are supplied. As an example; overriding an application to use RESOURCE_LOCAL when it was coded to use JTA would result in changes not be written to the database. PersistenceUnitProperties.METADATA_SOURCE_PROPERTIES_FILE property will be used to get a file resource from the classloader. Properties are read from the file. If the property either not specified or contains an empty string then returns null.
- Since:
- EclipseLink 2.4
-
getFileURL
protected static URL getFileURL(String fileName, ClassLoader classLoader, SessionLog log) throws IOException - Throws:
IOException
-
getConfigPropertyLogDebug
public Object getConfigPropertyLogDebug(String propertyName, Map<String, ?> properties, SessionLog log) Check the provided map for an object with the given name. If that object is not available, check the System properties. Log the value returned if logging is enabled- Parameters:
propertyName
- property nameproperties
- propertieslog
- logger- Returns:
- object for the given name, null if not found
-