The
The
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:
<Resource id="myDerbyDatasource" type="javax.sql.DataSource">
. . . .
<Resource>
Note that in the xml element, the type value of javax.sql.DataSource can abbreviated to just DataSource as follows:
<Resource id="myDerbyDatasource" type="DataSource">
. . . .
<Resource>
It is also possible to specify the path to the driver jar file using a classpath attribute like so:
<Resource id="myDerbyDatasource" type="DataSource" classpath="/path/to/driver.jar">
. . . .
<Resource>
...Or in a Maven environment like so:
<Resource id="myDerbyDatasource" type="DataSource" classpath="mvn:org.apache.derby:derby:10.10.1.1">
. . . .
<Resource>
See Containers and Resources for a complete list of supported DataSource properties.
See DataSource Password Encryption for information on specifying non-plain-text database passwords in your openejb.xml file.
See Common DataSource Configurations for a list of the commonly used databases and their driver configurations.
See DataSource Configuration by Creator 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 for more details.
<Resource id="Default JDBC Database" type="DataSource">
. . . . .
</Resource>
The global jndi name would be java:openejb/Resource/Default JDBC Database
<Resource id="Derby Database" type="DataSource">
. . . . .
</Resource>
The global jndi name would be java:openejb/Resource/Derby Database
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.
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:
<Resource id="myDerbyDatabase" type="DataSource">
. . . . .
</Resource>
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
<resource-ref>
<res-ref-name>myDerbyDatabase</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
</resource-ref>
OR
<resource-ref>
<res-ref-name>jdbc/myDerbyDatabase</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
</resource-ref>
OR
<resource-ref>
<res-ref-name>someOtherName</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<mapped-name>myDerbyDatabase</mapped-name>
</resource-ref>