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

Peter Muir peter at bleepbleep.org.uk
Sat Jul 14 19:48:40 EDT 2007


  User: pmuir   
  Date: 07/07/14 19:48:40

  Added:       examples/seamdiscs/resources/META-INF     application.xml
                        persistence.xml ejb-jar.xml jboss-app.xml
  Log:
  Move seamdiscs example, upgrade it to Trinidad 1.2.1
  
  Revision  Changes    Path
  1.4       +4 -44     jboss-seam/examples/seamdiscs/resources/META-INF/application.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: application.xml
  ===================================================================
  RCS file: application.xml
  diff -N application.xml
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ application.xml	14 Jul 2007 23:48:40 -0000	1.4
  @@ -0,0 +1,23 @@
  +<?xml version="1.0" encoding="UTF-8"?>
  +<application xmlns="http://java.sun.com/xml/ns/javaee"
  +             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  +             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd"
  +             version="5">
  +    
  +   <display-name>SeamDiscs</display-name>
  +   
  +   <module>
  +      <web>
  +         <web-uri>jboss-seam-discs.war</web-uri>
  +         <context-root>/seam-discs</context-root>
  +      </web>
  +   </module>
  +   
  +   <module>
  +      <ejb>jboss-seam-discs.jar</ejb>
  +   </module>
  +   
  +   <module>
  +       <ejb>jboss-seam.jar</ejb>
  +   </module>   
  +</application>
  
  
  
  1.1      date: 2007/07/14 23:48:40;  author: pmuir;  state: Exp;jboss-seam/examples/seamdiscs/resources/META-INF/persistence.xml
  
  Index: persistence.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- Persistence deployment descriptor for dev profile -->
  <persistence xmlns="http://java.sun.com/xml/ns/persistence" 
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" 
               version="1.0">
               
     <persistence-unit name="seamdiscs">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <jta-data-source>java:/seamdiscsDatasource</jta-data-source>
        <properties>
           <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
           <property name="hibernate.cache.use_query_cache" value="true"/>
           <property name="hibernate.show_sql" value="true"/>
           <property name="jboss.entity.manager.factory.jndi.name" value="java:/seamdiscsEntityManagerFactory"/>
        </properties>
     </persistence-unit>
      
  </persistence>
  
  
  
  1.3       +0 -0      jboss-seam/examples/seamdiscs/resources/META-INF/ejb-jar.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ejb-jar.xml
  ===================================================================
  RCS file: ejb-jar.xml
  diff -N ejb-jar.xml
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ ejb-jar.xml	14 Jul 2007 23:48:40 -0000	1.3
  @@ -0,0 +1,20 @@
  +<?xml version="1.0" encoding="UTF-8"?>
  +<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" 
  +         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  +         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd"
  +         version="3.0">
  +         
  +   <interceptors>
  +      <interceptor>
  +         <interceptor-class>org.jboss.seam.ejb.SeamInterceptor</interceptor-class>
  +      </interceptor>
  +   </interceptors>
  +   
  +   <assembly-descriptor>
  +      <interceptor-binding>
  +         <ejb-name>*</ejb-name>
  +         <interceptor-class>org.jboss.seam.ejb.SeamInterceptor</interceptor-class>
  +      </interceptor-binding>
  +   </assembly-descriptor>
  +   
  +</ejb-jar>
  \ No newline at end of file
  
  
  
  1.3       +0 -0      jboss-seam/examples/seamdiscs/resources/META-INF/jboss-app.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: jboss-app.xml
  ===================================================================
  RCS file: jboss-app.xml
  diff -N jboss-app.xml
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ jboss-app.xml	14 Jul 2007 23:48:40 -0000	1.3
  @@ -0,0 +1,5 @@
  +<jboss-app>
  +   <loader-repository> 
  +      seam.jboss.org:loader=seamdiscs
  +   </loader-repository> 
  +</jboss-app> 
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list