[jboss-cvs] jboss-seam/examples/registration/resources/META-INF ...

Gavin King gavin.king at jboss.com
Wed Sep 27 00:09:02 EDT 2006


  User: gavin   
  Date: 06/09/27 00:09:02

  Modified:    examples/registration/resources/META-INF    application.xml
                        jboss-app.xml persistence.xml
  Log:
  major work on crud example
  
  Revision  Changes    Path
  1.7       +8 -8      jboss-seam/examples/registration/resources/META-INF/application.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: application.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/registration/resources/META-INF/application.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- application.xml	17 Apr 2006 20:53:27 -0000	1.6
  +++ application.xml	27 Sep 2006 04:09:02 -0000	1.7
  @@ -1,14 +1,14 @@
   <application>
  -	<display-name>Seam Registration</display-name>
  +	<display-name>Seam CRUD</display-name>
   
   	<module>
   		<web>
  -			<web-uri>jboss-seam-registration.war</web-uri>
  -			<context-root>/seam-registration</context-root>
  +			<web-uri>jboss-seam-crud.war</web-uri>
  +			<context-root>/seam-crud</context-root>
   		</web>
   	</module>
   	<module>
  -		<ejb>jboss-seam-registration.jar</ejb>
  +		<ejb>jboss-seam-crud.jar</ejb>
   	</module>
   	<module>
   	    <java>jboss-seam.jar</java>
  
  
  
  1.2       +1 -1      jboss-seam/examples/registration/resources/META-INF/jboss-app.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: jboss-app.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/registration/resources/META-INF/jboss-app.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- jboss-app.xml	11 Sep 2005 22:59:39 -0000	1.1
  +++ jboss-app.xml	27 Sep 2006 04:09:02 -0000	1.2
  @@ -1,5 +1,5 @@
   <jboss-app>
         <loader-repository> 
  -      seam.jboss.org:loader=seam-registration
  +      seam.jboss.org:loader=seam-crud
         </loader-repository> 
   </jboss-app> 
  \ No newline at end of file
  
  
  
  1.6       +3 -1      jboss-seam/examples/registration/resources/META-INF/persistence.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: persistence.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/registration/resources/META-INF/persistence.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- persistence.xml	16 Apr 2006 04:53:19 -0000	1.5
  +++ persistence.xml	27 Sep 2006 04:09:02 -0000	1.6
  @@ -4,6 +4,8 @@
         <jta-data-source>java:/DefaultDS</jta-data-source>
         <properties>
            <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
  +         <property name="hibernate.show_sql" value="true"/>
  +         <property name="jboss.entity.manager.factory.jndi.name" value="java:/crudEntityManagerFactory"/>
         </properties>
   	</persistence-unit>
   </persistence>
  
  
  



More information about the jboss-cvs-commits mailing list