org.pojava.persistence.jndi.package.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence Show documentation
Show all versions of persistence Show documentation
POJava Persistence is a small library of tools used in the
persistence and retrieval of data to and from storage, such as to a
database or XML document. It contains an ORM (Object Relational
Mapping) tool that supports use of existing beans and POJO's rather
than requiring POJO's to be instrumented to support a tool.
The newest version!
Objects that aid in unit testing-- currently, by providing an InitialContext normally
created by your application server for JNDI.
It is common for a DataSource to be retrieved from a JNDI registry. The
registry is usually configured by the application server, so that when your
unit tests are running standalone, there is no JNDI registry. This package addresses
that problem by creating an in-memory mockup of JNDI that your unit tests can
have at.
Example:
context=JNDIRegistry.getInitialContext();
Class.forName("org.postgresql.Driver");
DataSource ds=new DriverManagerDataSource("jdbc:postgresql://localhost:5432/postgres", "pojava", "popojava");
context.S