Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

When freshly unpacked, OpenEJB will look like this:

Panel

openejb-3.0/
openejb-3.0/logs/
openejb-3.0/apps/
openejb-3.0/lib/
openejb-3.0/lib/<several jars>
openejb-3.0/LICENSE.txt
openejb-3.0/NOTICE.txt
openejb-3.0/README.txt

...

openejb-3.0/bin/
openejb-3.0/bin/openejb.bat
openejb-3.0/bin/openejb
openejb-3.0/conf/
openejb-3.0/conf/README.txt

Directories

bin/

-beta-1. If you look under this directory, you will find a few more directories:
-bin: Contains commands to start/stop the server (You can also do a lot of other stuff like deploy/undeploy, but we will just talk about things needed to get you started) -

lib/

: Contains several jar files (you only need of few of these jars in your classpath to do EJB development) -

apps/

: Once you create your EJB's and jar them up, you can place your jar file in this directory and start the server. The server will automatically deploy all the EJB's contained in this JAR.

logs/

Contains log files. -

conf/

: This directory contains all the configuration files. Although you may not see any file except for nothing but a README.txt file right now, but after you start the server, the required configuration at the time OpenEJB is unpacked. The first time OpenEJB is started however, these files will be automatically created. It is highly recommeded to read the README.txt file under this directory
-logs: Contains log filescreated:

No Format

  conf/
    openejb.xml                (main config file)

    logging.properties         (log levels and files)

    login.config               (jaas config file)
    users.properties           (users that can log in)
    groups.properties          (groups in which users belong)

    admin.properties           (network socket for administration)
    ejbd.properties            (network socket for ejb invocations)
    hsql.properties            (network socket for hsql client access)
    httpejbd.properties        (network socket for ejb invocations over http)
    telnet.properties          (network socket for telnet "server") 

These files can be edited as desired. If at any time you are unhappy with your changes or simply wish to start over, you can delete or move any of the files above and a new one containing the default values will be automatically created.