simple-jndi.
A simple implementation of JNDI. It is entirely library based, so no server instances are started, and it sits upon Java .properties files or XML files, so it is easy to use and simple to understand. The .properties/.xml files may be either on the file system or in the classpath..
Here is the list of declaration for simple-jndi. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>simple-jndi</groupId> <artifactId>simple-jndi</artifactId> <version>0.11.4.1</version> </dependency>
If you think this Maven repository POM file listing for simple-jndi is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The simple-jndi-0.11.4.1 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Database | commons-dbcp 1.2.2 Commons Database Connection Pooling | 148 |
Data Structure | commons-pool 1.3 Commons Object Pooling Library | 73 |
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
The following table lists the most popular artifacts which are depending on simple-jndi-0.11.4.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
ORM | jackrabbit-jcr-commons 2.4.1 General purpose classes for use with the JCR API | 8 |
ORM | jackrabbit-jcr-commons 2.2.10 General purpose classes for use with the JCR API | 8 |
ORM | jackrabbit-jcr-commons 2.2.4 General purpose classes for use with the JCR API | 7 |
ORM | jackrabbit-jcr-commons 2.4.0 General purpose classes for use with the JCR API | 12 |
ORM | jackrabbit-jcr-commons 2.2.12 General purpose classes for use with the JCR API | 8 |
ORM | jackrabbit-jcr-commons 2.4.2 General purpose classes for use with the JCR API | 6 |
ORM | jackrabbit-jcr-commons 2.6.5 General purpose classes for use with the JCR API | 6 |
ORM | jackrabbit-jcr-commons 2.6.0 General purpose classes for use with the JCR API | 6 |
ORM | jackrabbit-jcr-commons 2.2.2 General purpose classes for use with the JCR API | 7 |
ORM | jackrabbit-jcr-commons 2.2.5 General purpose classes for use with the JCR API | 7 |
ORM | jackrabbit-jcr-commons 2.5.3 General purpose classes for use with the JCR API | 9 |
The following plugins are used in the simple-jndi-0.11.4.1.jar
The following packages are defined in the simple-jndi-0.11.4.1.jar
org.osjava.sj org.osjava.sj.jndi org.osjava.sj.loader org.osjava.sj.loader.convert org.osjava.sj.loader.util org.osjava.sj.memory org.osjava.sj.naming
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:noNamespaceSchemaLocation="http://maven.apache.org/xsd/maven-project-3.0.0.xsd" xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <artifactId>simple-jndi</artifactId> <name>simple-jndi</name> <version>0.11.4.1</version> <organization> <name>OSJava</name> </organization> <inceptionYear>2003</inceptionYear> <groupId>simple-jndi</groupId> <url>http://www.osjava.org/simple-jndi/</url> <description> A simple implementation of JNDI. It is entirely library based, so no server instances are started, and it sits upon Java .properties files or XML files, so it is easy to use and simple to understand. The .properties/.xml files may be either on the file system or in the classpath. </description> <scm> <developerConnection>scm:svn:https://osjava.googlecode.com/svn/trunk/simple-jndi</developerConnection> <connection>scm:svn:http://osjava.googlecode.com/svn/trunk/simple-jndi</connection> </scm> <issueManagement> <url>http://code.google.com/p/osjava/issues/list</url> </issueManagement> <mailingLists> <mailingList> <name>osjava google group</name> <subscribe>http://groups.google.com/group/osjava</subscribe> <unsubscribe>http://groups.google.com/group/osjava</unsubscribe> <archive>http://groups.google.com/group/osjava</archive> </mailingList> </mailingLists> <dependencies> <!-- used if you turn on dbcp usage --> <dependency> <artifactId>commons-dbcp</artifactId> <groupId>commons-dbcp</groupId> <version>1.2.2</version> <optional>true</optional> </dependency> <!-- used if you turn on dbcp usage --> <dependency> <artifactId>commons-pool</artifactId> <groupId>commons-pool</groupId> <version>1.3</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <!-- <dependency> <groupId>directory-naming</groupId> <artifactId>directory-naming-core</artifactId> <version>SNAPSHOT</version> </dependency> --> </dependencies> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <testResources> <testResource> <directory>${basedir}/src/test/config</directory> <targetPath>config</targetPath> </testResource> <testResource> <directory>${basedir}/src/test</directory> <includes> <include>jndi.properties</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>always</forkMode> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> <!-- NOT USED FOR SITE YET; USE MAVEN 1 --> <reports> <report>maven-jxr-plugin</report> <report>maven-javadoc-plugin</report> <report>maven-license-plugin</report> <report>maven-changes-plugin</report> </reports> </project>