首先来看一个标准的Spring配置文件 applicationContext.xml
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"
- default-autowire="byName" default-lazy-init="true">
- <!-- 配置数据源 -->
- <bean id="dataSource"
- class="org.springframework.jdbc.datasource.DriverManagerDataSource">
- <property name="driverClassName">
- <value>com.mysql.jdbc.Driver</value>
- </property>
- <property name="url">
- <value>
- jdbc:mysql://localhost/ssh?characterEncoding=utf-8
- </value>
- </property>
- <property name="username">
- <value>root</value>
- </property>
- <property name="password">
- <value>123</value>
- </property>
- </bean>
- <!--配置SessionFactory -->
- <bean id="sessionFactory"
- class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <property name="dataSource">
- <ref bean="dataSource" />
- </property>
- <property name="mappingResources">
- <list>
- <value>com/ssh/pojo/User.hbm.xml</value>
- </list>
- </property>
- <property name="hibernateProperties">
- <props>
- <prop key="hibernate.show_sql">true</prop>
- </props>
- </property>
- </bean>
- <!-- 事务管理 -->
- <bean id="transactionManager"
- class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <property name="sessionFactory">
- <ref bean="sessionFactory" />
- </property>
- </bean>
- <!-- hibernateTemplate -->
- <bean id="hibernateTemplate"
- class="org.springframework.orm.hibernate3.HibernateTemplate">
- <property name="sessionFactory">
- <ref bean="sessionFactory" />
- </property>
- </bean>
- <!-- 配置数据持久层 -->
- <bean id="userDao"
- class="com.ssh.dao.impl.UserDaoImpl">
- <property name="hibernateTemplate" ref="hibernateTemplate"></property>
- </bean>
- <!-- 配置业务逻辑层 -->
- <bean id="userService"
- class="com.ssh.service.impl.UserServiceImpl">
- <property name="userDao" ref="userDao"></property>
- </bean>
- <!-- 配置控制层 -->
- <bean id="UserAction"
- class="com.ssh.action.UserAction" scope="prototype">
- <property name="userService" ref="userService"></property>
- </bean>
- <!-- 配置pojo -->
- <bean id="User" class="com.ssh.pojo.User" scope="prototype"/>
- </beans>
下面是详解:
- 1.基本配置:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- ">
- <context:component-scan base-package="com.persia">
- <!-- 开启组件扫描 -->
- </context:component-scan>
- <context:annotation-config>
- <!--开启注解处理器-->
- </context:annotation-config>
- <!-- 使用注解,省去了propertity的xml配置,减少xml文件大小 -->
- <bean id="personServiceAnno" class="com.persia.PersonServiceAnnotation"></bean>
- <bean id="personDaoBeanAnno" class="com.persia.PersonDaoBean"></bean>
- <bean id="personDaoBeanAnno2" class="com.persia.PersonDaoBean"></bean>
- <!-- 自动注解 -->
- <bean id="personServiceAutoInject" class="com.persia.PersonServiceAutoInject" autowire="byName"></bean>
- <bean id="personService" class="com.persia.PersonServiceBean">
- <!-- 由spring容器去创建和维护,我们只要获取就可以了 -->
- </bean>
- <bean id="personService2" class="com.persia.PersonServiceBeanFactory" factory-method="createInstance" lazy-init="true"
- init-method="init" destroy-method="destory">
- <!-- 静态工厂获取bean -->
- </bean>
- <bean id="fac" class="com.persia.PersonServiceBeanInsFactory"></bean>
- <bean id="personService3" factory-bean="fac" factory-method="createInstance" scope="prototype">
- <!-- 实例工厂获取bean,先实例化工厂再实例化bean-->
- </bean>
- <!-- ref方式注入属性 -->
- <bean id="personDao" class="com.persia.PersonDaoBean"></bean>
- <bean id="personService4" class="com.persia.PersonServiceBean">
- <property name="personDao" ref="personDao"></property>
- </bean>
- <!-- 内部bean方式注入 -->
- <bean id="personService5" class="com.persia.PersonServiceBean">
- <property name="personDao">
- <bean class="com.persia.PersonDaoBean"></bean>
- </property>
- <property name="name" value="persia"></property>
- <property name="age" value="21"></property>
- <property name="sets">
- <!-- 集合的注入 -->
- <set>
- <value>第一个</value>
- <value>第二个</value>
- <value>第三个</value>
- </set>
- </property>
- <property name="lists">
- <!-- 集合的注入 -->
- <list>
- <value>第一个l</value>
- <value>第二个l</value>
- <value>第三个l</value>
- </list>
- </property>
- <property name="properties">
- <props>
- <prop key="key1">value1</prop>
- <prop key="key2">value2</prop>
- <prop key="key3">value3</prop>
- </props>
- </property>
- <property name="map">
- <map>
- <entry key="key1" value="value-1"></entry>
- <entry key="key2" value="value-2"></entry>
- <entry key="key3" value="value-3"></entry>
- </map>
- </property>
- </bean>
- <bean id="personService6" class="com.persia.PersonServiceBean">
- <constructor-arg index="0" value="构造注入的name" ></constructor-arg>
- <!-- 基本类型可以不写type -->
- <constructor-arg index="1" type="com.persia.IDaoBean" ref="personDao">
- </constructor-arg>
- </bean>
- </beans>
- 2.开启AOP:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- ">
- <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
- <bean id="myInterceptor" class="com.persia.service.MyInterceptor"></bean>
- <bean id="personServiceImpl" class="com.persia.service.impl.PersonServiceImpl"></bean>
- </beans>AOP的xml版本<?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- ">
- <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
- <bean id="personService" class="com.persia.service.impl.PersonServiceImpl"></bean>
- <bean id="aspectBean" class="com.persia.service.MyInterceptor"></bean>
- <aop:config>
- <aop:aspect id="myaop" ref="aspectBean">
- <aop:pointcut id="mycut" expression="execution(* com.persia.service.impl.PersonServiceImpl.*(..))"/>
- <aop:pointcut id="argcut" expression="execution(* com.persia.service.impl.PersonServiceImpl.*(..)) and args(name)"/>
- <aop:before pointcut-ref="mycut" method="doAccessCheck" />
- <aop:after-returning pointcut-ref="mycut" method="doAfterReturning"/>
- <aop:after-throwing pointcut-ref="mycut" method="doThrowing"/>
- <aop:after pointcut-ref="argcut" method="doAfter" arg-names="name"/>
- <aop:around pointcut-ref="mycut" method="arround"/>
- </aop:aspect>
- </aop:config>
- </beans>
- 3.开启事务和注解:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
- ">
- <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
- <!-- 配置数据源 -->
- <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
- <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
- <property name="url" value="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8"/>
- <property name="username" value="root"/>
- <property name="password" value=""/>
- <!-- 连接池启动时的初始值 -->
- <property name="initialSize" value="1"/>
- <!-- 连接池的最大值 -->
- <property name="maxActive" value="500"/>
- <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
- <property name="maxIdle" value="2"/>
- <!-- 最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
- <property name="minIdle" value="1"/>
- </bean>
- <!-- 配置事务管理器-->
- <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
- <property name="dataSource" ref="dataSource"/>
- </bean>
- <!-- 配置业务bean -->
- <bean id="personService" class="com.persia.service.impl.PersonServiceImpl">
- <property name="ds" ref="dataSource"></property>
- </bean>
- <!-- 采用@Transactional注解方式来使用事务 -->
- <tx:annotation-driven transaction-manager="txManager"/>
- </beans>
- XML版本:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
- ">
- <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
- <!-- 配置数据源 -->
- <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
- <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
- <property name="url" value="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8"/>
- <property name="username" value="root"/>
- <property name="password" value=""/>
- <!-- 连接池启动时的初始值 -->
- <property name="initialSize" value="1"/>
- <!-- 连接池的最大值 -->
- <property name="maxActive" value="500"/>
- <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
- <property name="maxIdle" value="2"/>
- <!-- 最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
- <property name="minIdle" value="1"/>
- </bean>
- <!-- 配置事务管理器 -->
- <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
- <property name="dataSource" ref="dataSource"/>
- </bean>
- <!-- 配置业务bean -->
- <bean id="personService" class="com.persia.service.impl.PersonServiceImpl">
- <property name="ds" ref="dataSource"></property>
- </bean>
- <!-- 使用XML来使用事务管理-->
- <aop:config>
- <!-- 配置一个切面,和需要拦截的类和方法 -->
- <aop:pointcut id="transactionPointcut" expression="execution(* com.persia.service..*.*(..))"/>
- <aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointcut"/>
- </aop:config>
- <!-- 配置一个事务通知 -->
- <tx:advice id="txAdvice" transaction-manager="txManager">
- <tx:attributes>
- <!-- 方法以get开头的,不使用事务 -->
- <tx:method name="get*" read-only="true" propagation="NOT_SUPPORTED"/>
- <!-- 其他方法以默认事务进行 -->
- <tx:method name="*"/>
- </tx:attributes>
- </tx:advice>
- </beans>
- 4.SSH:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
- ">
- <!-- 配置数据源 -->
- <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
- <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
- <property name="url" value="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8"/>
- <property name="username" value="root"/>
- <property name="password" value=""/>
- <!-- 连接池启动时的初始值 -->
- <property name="initialSize" value="1"/>
- <!-- 连接池的最大值 -->
- <property name="maxActive" value="500"/>
- <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
- <property name="maxIdle" value="2"/>
- <!-- 最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
- <property name="minIdle" value="1"/>
- </bean>
- <!-- 配置hibernate的sessionFactory -->
- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <property name="dataSource"><ref bean="dataSource" /></property>
- <property name="mappingResources">
- <list>
- <value>com/persia/model/Person.hbm.xml</value>
- </list>
- </property>
- <!-- 1.首先在sessionFactory里面配置以上3条设置 -->
- <!-- 2.然后得在类路径下面添加一个ehcache.xml的缓存配置文件 -->
- <!-- 3.最后在要使用缓存的实体bean的映射文件里面配置缓存设置 -->
- <!--使用二级缓存-->
- <!-- 不使用查询缓存,因为命中率不是很高 -->
- <!-- 使用Ehcache缓存产品 -->
- <property name="hibernateProperties">
- <value>
- hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
- hibernate.hbm2ddl.auto=update
- hibernate.show_sql=false
- hibernate.format_sql=false
- hibernate.cache.use_second_level_cache=true
- hibernate.cache.use_query_cache=false
- hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider
- </value>
- </property>
- </bean>
- <!-- 配置Spring针对hibernate的事务管理器 -->
- <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <property name="sessionFactory" ref="sessionFactory"/>
- </bean>
- <!-- 配置使用注解的方式来使用事务 -->
- <tx:annotation-driven transaction-manager="txManager"/>
- <!-- 使用手工配置的注解方式来注入bean -->
- <context:annotation-config></context:annotation-config>
- <!--定义要注入的业务bean -->
- <bean id="personService" class="com.persia.service.impl.PersonServiceImpl"></bean>
- <!--将Struts的action交给Spring容器来管理 -->
- <bean name="/person/list" class="com.persia.struts.PersonListAction">
- <!--1.这里要求name和struts-config里面的action的path名称一致,因为id不允许有特殊字符-->
- <!--2.还得在Struts-config文件里面添加Spring的请求处理器,该处理器会根据action的path属性到Spring容器里面寻找这个bean,若找到了则用这个bean来处理用户的请求-->
- <!--3.然后去掉action的type标签和值(可选),当Spring处理器找不到该bean时,才会使用Struts的action-->
- <!--4.最后在action里面使用Spring的注入方式来注入业务bean-->
- </bean>
- <bean name="/person/manage" class="com.persia.struts.PersonManageAction"></bean>
- </beans>
- 5.SSH2:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
- ">
- <!-- 配置数据源 -->
- <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
- <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
- <property name="url" value="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8"/>
- <property name="username" value="root"/>
- <property name="password" value=""/>
- <!-- 连接池启动时的初始值 -->
- <property name="initialSize" value="1"/>
- <!-- 连接池的最大值 -->
- <property name="maxActive" value="500"/>
- <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
- <property name="maxIdle" value="2"/>
- <!-- 最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
- <property name="minIdle" value="1"/>
- </bean>
- <!-- 配置hibernate的sessionFactory -->
- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <property name="dataSource"><ref bean="dataSource" /></property>
- <property name="mappingResources">
- <list>
- <value>com/persia/model/Person.hbm.xml</value>
- </list>
- </property>
- <!-- 1.首先在sessionFactory里面配置以上3条设置 -->
- <!-- 2.然后得在类路径下面添加一个ehcache.xml的缓存配置文件 -->
- <!-- 3.最后在要使用缓存的实体bean的映射文件里面配置缓存设置 -->
- <!--使用二级缓存-->
- <!-- 不使用查询缓存,因为命中率不是很高 -->
- <!-- 使用Ehcache缓存产品 -->
- <property name="hibernateProperties">
- <value>
- hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
- hibernate.hbm2ddl.auto=update
- hibernate.show_sql=false
- hibernate.format_sql=false
- hibernate.cache.use_second_level_cache=true
- hibernate.cache.use_query_cache=false
- hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider
- </value>
- </property>
- </bean>
- <!-- 配置Spring针对hibernate的事务管理器 -->
- <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <property name="sessionFactory" ref="sessionFactory"/>
- </bean>
- <!-- 配置使用注解的方式来使用事务 -->
- <tx:annotation-driven transaction-manager="txManager"/>
- <!-- 使用手工配置的注解方式来注入bean -->
- <context:annotation-config></context:annotation-config>
- <!--定义要注入的业务bean -->
- <bean id="personService" class="com.persia.service.impl.PersonServiceImpl"></bean>
- <!--注入Struts 2的action -->
- <bean id="personList" class="com.persia.struts2.action.PersonListAction"></bean>
- </beans>
- 6.SSJ:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
- ">
- <!-- 使用手工配置的注解方式来注入bean -->
- <context:annotation-config></context:annotation-config>
- <!-- 1.配置Spring集成JPA -->
- <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
- <property name="persistenceUnitName" value="SpringJPAPU"/>
- </bean>
- <!--2.配置Spring针对JPA的事务 -->
- <bean id="txManager" class="org.springframework.orm.jpa.JpaTransactionManager">
- <property name="entityManagerFactory" ref="entityManagerFactory"/>
- </bean>
- <!--3.开启事务注解 -->
- <tx:annotation-driven transaction-manager="txManager"/>
- <!--以上3个Spring集成JPA的配置,在web项目先添加Spring支持,后添加JPA支持时会自动生成 -->
- <!-- 配置业务bean -->
- <bean id="personService" class="com.persia.service.impl.PersonServiceImpl"></bean>
- <!-- 配置Struts的action -->
- <bean name="/person/list" class="com.persia.struts.PersonListAction"/>
- <bean name="/person/manage" class="com.persia.struts.PersonManageAction"/>
- </beans>
对于大多数的应用,从表现层的action,到持久层的DataSource,都被Spring 作为
bean 管理。如果这些bean 被配置在同一个文件中,阅读及维护该配置文件将是一件非
常有挑战的事情。
因此, Spring 建议:将一个大的配置文件分解成多个小的配置文件,使每个配置文
件仅仅管理功能近似于bean; 这样不仅可以分散配置文件,降低修改配置文件的风险,
而且更符合"分而治之"的软件工程原理。
多个配置文件最终需要汇总, ApplicationContext提供如下方式来汇总多个配置文件:
.使用App1icationContext 加载多个配置文件。
• Web 应用启动时加载多个配置文件。
• XML 配置文件中导入其他配置。
1 ApplicationContext 加载多个配置文件
ApplicatonContext 的常用实现类有如下两个:
• ClassPathXm1 ApplicationContext 。
• FileSystemXm1ApplicationContext 。
这两个类都可以用来加载多个配置文件,它们的构造器都可以接收一个数组,并在
该数组中存放多个配置文件。ClassPathXm1ApplicationContext 可采用如下代码加载多个
配置文件:
/I创建配置文件数组
/I假设有3 个配置文件: a.xml , b.xml , c.xml
Str工ng[) configLocations = {"a.xml" , "b.xml" , "c.xml"}
以配置文件数组为参数,创建ApplicationContext
ApplicationContext ctx = new ClassPathXmlApplicationContext(configLocations);
与采用FileSystemXm1ApplicationContext创建ApplicationContext的方式相似,区别
仅在于二者搜索配置文件的路径不同:ClassPathXm1ApplicationContext通过CLASSPATH
路径搜索配置文件:而FileSystemXm1ApplicationContext则在当前路径搜索配置文件。
2 Web 应用启动时加载多个配置文件
参看5.12.3 节所述,通过ContextLoaderListener 也可加载多个配置文件,可利用
337
轻量级J2EE 企业应用实战一一-Struts+Spring+Hibernate 整合开发
<context-pararn>元素来指定多个配置文件位置,其配置如下:
< l-- 确定配置文件的位置一〉
<context-param>
< param-name>contextConfigLocation</param-name>
< 1-- 此处可以列出多个Spring 的XML 配置文件>
< param-value>/WEB-INF/daoContext.xml IWEB-INF/applicationContext.xml<1
param-value>
< context-param>
3 XML 配置文件中导人其他配置文件
配置文件本身和其子元素import. 可用于导入其他配置文件。具体的配置示例如下:
- <?xml version="1.0" encod工口g="gb2312"?>
- <!一指定Spring 配置文件的dtd>
- <!DOCTYPE beans PUBLIC "-IISPR工NGIIDTD BEANIIEN"
- ''http://www.springframework.org/dtd/spring-beans.dtd''>
- <!-- Spring 配置文件的根元素->
- <beans>
- <!一导入第→份配置文件: serv工ces.xml一〉
- <import resource="serv工ces.xml"l>
- <!-- 导入第二份配置文件: resources/messageSource.xml 一〉
- <import resource="resources/messageSource.xml"l>
- <!-- 导入第二份配置文件: resourcesl themeSource.xml -->
- <import resource="/resources/themeSource.xml"l>
- <!-- 下面定义该文件垦的其他bean…〉
- <bean id="beanl" class=". .."1>
- <bean id="bea口2" class="..."I>
- </beans>
相关推荐
`spring-aop-3.0.xsd` 是 Spring AOP 的 XML 配置文件,定义了与 AOP 相关的元素和属性。例如,你可以在这里定义切入点(pointcut)、通知(advises)以及代理配置。将此文件添加到 Eclipse 的 XML 目录(catalog)...
这篇教程将详细讲解如何通过Spring的配置文件来实现AOP。 一、理解AOP概念 AOP的核心思想是将分散在各个模块中的交叉性代码(如日志、事务处理)抽取出来,形成独立的切面,以便于复用和维护。它提供了一种模块化的...
在Spring框架中,AOP主要用于日志记录、事务管理、性能统计等场景。本示例是关于如何在Spring Boot项目中实现AOP功能的一个简单演示。 首先,我们需要了解AOP的基本概念。AOP的核心是切面(Aspect),它封装了跨越...
总结来说,Spring配置文件实现AOP的关键在于理解切点表达式和通知类型,以及如何在XML配置中定义它们之间的关系。这使得我们能够在不修改业务代码的情况下,轻松地添加或调整横切关注点,从而提升代码的灵活性和可...
这些文档详细解释了如何配置和使用Spring,包括容器配置、bean定义、数据访问、事务管理、Web开发等方面的指导,是学习和解决问题的重要资源。 3. spring-5.3.6-schema.zip:这个文件包含了Spring Framework的XML ...
4. **spring-aop**: 实现了面向切面编程(AOP),允许定义方法拦截器和切面,用于实现如日志、事务管理等功能。 5. **spring-web**: 为Web应用提供支持,包括HTTP多部分请求处理、Servlet监听器等。 6. **spring-web...
在Spring框架中,XML配置文件是早期版本中定义和管理bean的主要方式。这些XML配置文件依赖于特定的XSD(XML Schema Definition)文件来提供语法验证和代码编辑器的自动提示功能。在给定的压缩包中,包含了`spring-...
1. `beans.xsd`:定义了Spring配置文件中bean元素的结构,用于声明和配置bean。 2. `context.xsd`:扩展了beans.xsd,引入了更多与上下文相关的元素,如property-placeholder和message-source。 3. `aop.xsd`:定义...
开发者可以根据这些schema编写符合规范的Spring配置文件,使得配置过程更加规范和高效。 五、使用技巧与最佳实践 1. 利用Spring Boot简化配置:Spring Boot是基于Spring Framework构建微服务应用的快速启动器,可以...
而`spring-5.2.8.RELEASE-schema.zip`则包含了Spring的XML配置文件的XSD规范,这对于理解Spring的配置方式至关重要。 Spring框架的核心模块包括: 1. **Core Container**(核心容器):这是Spring的基础,包括 ...
在本项目中,Spring作为容器,管理着所有Bean的生命周期,通过XML配置文件或Java配置类来定义Bean的创建、初始化、销毁等过程。同时,Spring MVC作为其Web层组件,处理HTTP请求,实现业务逻辑和视图的解耦。 二、...
在Spring框架中,AOP(面向切面编程)是一种强大的工具,它允许程序员定义横切关注点,如日志、事务管理、权限检查等,这些关注点可以被模块化为可重用的切面,避免了传统编程中的大量重复代码。本实例将探讨如何在...
1. **XML配置**: 在早期的Spring版本中,Bean的定义通常在XML配置文件中进行。例如,我们可以创建一个名为`beans.xml`的文件,其中包含如下代码: ```xml <beans xmlns="http://www.springframework.org/schema/...
4. **Spring 的Bean 定义**:在Spring 配置文件中,我们可以为Struts 2 的Action 定义bean,包括其属性、依赖关系以及生命周期方法。这使得Action 的配置更加集中,易于管理和扩展。 5. **Action 实例的生命周期**...
Spring Mybatis是一个流行的...通过以上库文件的整合,Spring Mybatis能提供一套完整的解决方案,帮助开发者快速、高效地构建数据访问层,同时利用Spring的其他功能如事务管理、AOP等,提高代码的可维护性和灵活性。
`schema`文件夹通常包含Spring配置文件的XML架构定义。这些文件定义了Spring XML配置文件中的元素和属性,帮助IDE提供语法高亮和自动完成,同时确保配置的正确性。例如,`spring-beans.xsd`定义了bean元素,`spring-...
Spring的AOP模块允许我们定义切面,实现横切关注点,如日志记录、事务管理等,与Bean配置紧密相关。 以上就是"Spring--2.Spring 中的 Bean 配置-2-2"这一主题涵盖的主要内容,理解并熟练运用这些知识点,能帮助...
在Spring Framework中,核心特性包括依赖注入(Dependency Injection,DI),它允许开发者在运行时通过配置文件或注解来管理对象之间的关系,从而降低了代码的耦合度。此外,它还提供了AOP(面向切面编程)支持,...
5. **简化配置**:通过插件,开发者不再需要在struts.xml或web.xml中显式配置Action的类名和实例,只需在Spring配置文件中定义Bean即可。 6. **提高代码可测试性**:由于Action由Spring管理,可以更容易地进行单元...
在上面的配置文件中,我们可以看到 `<bean>` 元素用于定义一个名为 "sgis.sdk.transactionManager" 的事务管理器,该管理器使用数据源连接池来管理事务。 Context 文件配置: Context 文件是 Spring AOP 的核心...