[jboss-cvs] jboss-seam/examples/jpa/resources-weblogic10/WEB-INF ...

Jay Balunas jbalunas at redhat.com
Thu Jan 10 10:34:01 EST 2008


  User: jbalunas
  Date: 08/01/10 10:34:01

  Modified:    examples/jpa/resources-weblogic10/WEB-INF    web.xml
                        components.xml
  Added:       examples/jpa/resources-weblogic10/WEB-INF    weblogic.xml
  Log:
  JBSEAM-2411, JBSEAM-2476 Updated configs for transaction impl, and solved ANTLR issue.
  
  Revision  Changes    Path
  1.2       +0 -9      jboss-seam/examples/jpa/resources-weblogic10/WEB-INF/web.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: web.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/jpa/resources-weblogic10/WEB-INF/web.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- web.xml	8 Jan 2008 14:32:53 -0000	1.1
  +++ web.xml	10 Jan 2008 15:34:01 -0000	1.2
  @@ -54,13 +54,4 @@
         <param-name>facelets.DEVELOPMENT</param-name>        
         <param-value>true</param-value>    
       </context-param>  
  -
  -    <listener>
  -        <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
  -    </listener> 
  -        
  -    <session-config>
  -        <session-timeout>10</session-timeout> 
  -    </session-config>     
  -    
   </web-app>
  
  
  
  1.2       +5 -2      jboss-seam/examples/jpa/resources-weblogic10/WEB-INF/components.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: components.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/jpa/resources-weblogic10/WEB-INF/components.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- components.xml	8 Jan 2008 14:32:53 -0000	1.1
  +++ components.xml	10 Jan 2008 15:34:01 -0000	1.2
  @@ -8,6 +8,7 @@
               xsi:schemaLocation=
                   "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd 
                    http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd 
  +                 http://jboss.com/products/seam/transaction http://jboss.com/products/seam/transaction-2.0.xsd
                    http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
                    http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">
   
  @@ -15,11 +16,13 @@
                     concurrent-request-timeout="500"
                     conversation-id-parameter="cid"/>
                     
  -    <persistence:entity-manager-factory name="bookingDatabase"/>
  +    <transaction:entity-transaction entity-manager="#{em}"/>
  +                  
  +    <persistence:entity-manager-factory name="bookingDatabase" />
       
       <persistence:managed-persistence-context name="em"
                                  auto-create="true" 
  -                    entity-manager-factory="#{bookingDatabase}"/>
  +                    entity-manager-factory="#{bookingDatabase}" />
                       
       <security:identity authenticate-method="#{authenticator.authenticate}"/>  
       
  
  
  
  1.1      date: 2008/01/10 15:34:01;  author: jbalunas;  state: Exp;jboss-seam/examples/jpa/resources-weblogic10/WEB-INF/weblogic.xml
  
  Index: weblogic.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <weblogic-web-app
  xmlns="http://www.bea.com/ns/weblogic/90"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd">
  
  <container-descriptor>
  	<prefer-web-inf-classes>true</prefer-web-inf-classes>
  </container-descriptor>
  </weblogic-web-app>
  
  
  



More information about the jboss-cvs-commits mailing list