[jboss-cvs] jboss-seam/examples/spring/resources ...

Norman Richards norman.richards at jboss.com
Mon Feb 12 16:14:23 EST 2007


  User: nrichards
  Date: 07/02/12 16:14:23

  Modified:    examples/spring/resources  spring-beans.xml
  Log:
  from patch
  
  Revision  Changes    Path
  1.2       +37 -3     jboss-seam/examples/spring/resources/spring-beans.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: spring-beans.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/spring/resources/spring-beans.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- spring-beans.xml	21 Jan 2007 07:36:15 -0000	1.1
  +++ spring-beans.xml	12 Feb 2007 21:14:23 -0000	1.2
  @@ -1,8 +1,42 @@
  -<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" 
  -                       "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
  +<?xml version="1.0" encoding="UTF-8"?>
  +<beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop"
  +        xmlns:util="http://www.springframework.org/schema/util" xmlns:lds="http://icslib.wh.ldsglobal.net/schema/ldsutil"
  +        xmlns:seam="http://jboss.com/products/seam/spring"
  +        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  +        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
  +                            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
  +                            http://icslib.wh.ldsglobal.net/schema/ldsutil http://icslib.wh.ldsglobal.net/schema/ldsutil/spring-ldsutil-2.0.xsd
  +                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
  +                            http://jboss.com/products/seam/spring http://jboss.com/products/seam/spring.xsd"
  +        default-lazy-init="true">
   
  -<beans>
       <bean id="testBean" class="org.jboss.seam.example.spring.TestBean">
           <property name="name" value="Loaded from spring-beans.xml" />
       </bean>
  +    
  +    <bean id="singletonSpringStringStore" class="org.jboss.seam.example.spring.StringStore"/>
  +
  +    <!--
  +
  +    <bean id="requestSpringStringStore" class="org.jboss.seam.example.spring.StringStore" scope="request"/>
  +
  +    <bean id="sessionSpringStringStore" class="org.jboss.seam.example.spring.StringStore" scope="session"/>
  +
  +    -->
  +
  +    <bean id="statelessSeamStringStore" class="org.jboss.seam.example.spring.StringStore" scope="seam.STATELESS"/>
  +
  +    <bean id="methodSeamStringStore" class="org.jboss.seam.example.spring.StringStore" scope="seam.METHOD"/>
  +
  +    <bean id="eventSeamStringStore" class="org.jboss.seam.example.spring.StringStore" scope="seam.EVENT"/>
  +
  +    <bean id="pageSeamStringStore" class="org.jboss.seam.example.spring.StringStore" scope="seam.PAGE"/>
  +
  +    <bean id="conversationSeamStringStore" class="org.jboss.seam.example.spring.StringStore" scope="seam.CONVERSATION"/>
  +
  +    <bean id="sessionSeamStringStore" class="org.jboss.seam.example.spring.StringStore" scope="seam.SESSION"/>
  +
  +    <bean id="applicationSeamStringStore" class="org.jboss.seam.example.spring.StringStore" scope="seam.APPLICATION"/>
  +
  +    <bean class="org.jboss.seam.ioc.spring.SeamPostProcessorz"/>
   </beans>
  
  
  



More information about the jboss-cvs-commits mailing list