You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2012/02/23 00:50:50 UTC

svn commit: r1292588 - /openejb/site/trunk/content/dev/configuration-and-assembly.mdtext

Author: dblevins
Date: Wed Feb 22 23:50:49 2012
New Revision: 1292588

URL: http://svn.apache.org/viewvc?rev=1292588&view=rev
Log:
Fixed formatting

Modified:
    openejb/site/trunk/content/dev/configuration-and-assembly.mdtext

Modified: openejb/site/trunk/content/dev/configuration-and-assembly.mdtext
URL: http://svn.apache.org/viewvc/openejb/site/trunk/content/dev/configuration-and-assembly.mdtext?rev=1292588&r1=1292587&r2=1292588&view=diff
==============================================================================
--- openejb/site/trunk/content/dev/configuration-and-assembly.mdtext (original)
+++ openejb/site/trunk/content/dev/configuration-and-assembly.mdtext Wed Feb 22 23:50:49 2012
@@ -1,10 +1,9 @@
 Title: Configuration and Assembly
-{note}
+
 Disclaimer that we do tweak and change this code frequently, without
 notice.  It is the very heart of OpenEJB.  To keep things tight and clean,
 we reserve the right to change it at anytime.  Do not consider it a stable
 public API.
-{note}
 
 <a name="ConfigurationandAssembly-OverviewinCode"></a>
 # Overview in Code
@@ -18,19 +17,19 @@ This usage involves no xml parsing or cl
 give it to OpenEJB, OpenEJB doesn't know about it.  This is OpenEJB with
 all the magic stripped away.  At a high level:
 
-  # You build your app in code using the JAXB tree in code and hand it to the `ConfigurationFactory`.
-  ## The `org.apache.openejb.jee` package contains JAXB trees for ejb-jar.xml, beans.xml and all the Java EE deployment descriptors.
-  # The `ConfigurationFactory` will produce a fully canonical version of the app called the `Info` tree by:
-  ## Merging all sources of meta-data -- xml and annotations
-  ## Resolving all ejb, persistence unit, datasource and other references
-  ## Validating the app and looking for mistakes
-  # The `Info` tree is
-  ## The singular source of information about the application from this point forward.
-  ## Pure data with no smarts or logic of any kind.
-  ## The instruction set of what would be built by the assembler.
-  # The `Assembler` will build and start the application exactly as described in the `Info` tree.
-  ## When this step completes, you have a running application.
-  ## Any failures prior to this point require no cleanup.  Only the assembler builds "live" objects.
+1. You build your app in code using the JAXB tree in code and hand it to the `ConfigurationFactory`.
+    1. The `org.apache.openejb.jee` package contains JAXB trees for ejb-jar.xml, beans.xml and all the Java EE deployment descriptors.
+1. The `ConfigurationFactory` will produce a fully canonical version of the app called the `Info` tree by:
+    1. Merging all sources of meta-data -- xml and annotations
+    1. Resolving all ejb, persistence unit, datasource and other references
+    1. Validating the app and looking for mistakes
+1. The `Info` tree is
+    1. The singular source of information about the application from this point forward.
+    1. Pure data with no smarts or logic of any kind.
+    1. The instruction set of what would be built by the assembler.
+1. The `Assembler` will build and start the application exactly as described in the `Info` tree.
+    1. When this step completes, you have a running application.
+    1. Any failures prior to this point require no cleanup.  Only the assembler builds "live" objects.
 
 
     import javax.ejb.LocalBean;