Title: Configuring DataSources in tomee.xml The ** element is used to configure a *javax.sql.DataSource*. It is also used to configure other resources like Timers, Topics, Queues. We will see some examples of using to configure a DataSource. The element is designed after @Resource annotation and has similar attributes. For example, this annotation in your bean: @Resource(name = "myDerbyDatasource", type = javax.sql.DataSource.class) Would map to a Resource declared in your openejb.xml as follows: . . . . Note that in the xml element, the _type_ value of _javax.sql.DataSource_ can abbreviated to just _DataSource_ as follows: . . . . It is also possible to specify the path to the driver jar file using a classpath attribute like so: . . . . ...Or in a [Maven](http://maven.apache.org/) environment like so: . . . . See [Containers and Resources](containers-and-resources.html) for a complete list of supported DataSource properties. See [DataSource Password Encryption](datasource-password-encryption.html) for information on specifying non-plain-text database passwords in your openejb.xml file. See [Common DataSource Configurations](common-datasource-configurations.html) for a list of the commonly used databases and their driver configurations. See [DataSource Configuration by Creator](datasource-configuration-by-creator.html) for a list of the different properties supported for each data source creator. You may also need data partitioning per customer or depending on any other business criteria. That's also an available feature. See [Dynamic Datasource](dynamic-datasource.html) for more details. ## JNDI names for configured DataSources ### Example 1 . . . . . The global jndi name would be *java:openejb/Resource/Default JDBC Database* ### Example 2 . . . . . The global jndi name would be *java:openejb/Resource/Derby Database* ## Obtaining a DataSource DataSource references in your ejb should get automatically mapped to the Resource you declare. The shortest and easiest rule is that *if your reference name matches a Resource in your openejb.xml, that's the one you get*.  Essentially, the rules for mapping are as follows. 1. Name Attribute Match - @Resource with a name attribute matching the resource name gets that resource injected 1. Injected Name Match - variable name matching the resource name gets that resource injected 1. No Match - nothing matches a resource name, so the first resource available gets injected There are various ways one could obtain a DataSource now. Lets take an example of Derby. With a Resource declaration in your openejb.xml like this: . . . . . There are several possible ways to refer to it, as follows. *BY matching variable name to resource name* @Stateless public class FooBean { @Resource DataSource myDerbyDatabase; } *OR BY matching name* @Stateless public class FooBean { @Resource(name="myDerbyDatabase") DataSource dataSource; } *OR BY JNDI lookup* @Resource(name="myDerbyDatabase", type=javax.sql.DataSource.class) @Stateless public class FooBean { public void setSessionContext(SessionContext sessionContext) { DataSource dataSource = (DataSource) sessionContext.lookup("myDerbyDatabase"); } public void someOtherMethod() throws Exception { InitialContext initialContext = new InitialContext(); DataSource dataSource = (DataSource) initialContext.lookup("java:comp/env/myDerbyDatabase"); } } *OR* myDerbyDatabase javax.sql.DataSource *OR* jdbc/myDerbyDatabase javax.sql.DataSource *OR* someOtherName javax.sql.DataSource myDerbyDatabase