`
JadeLuo
  • 浏览: 434571 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
社区版块
存档分类
最新评论

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: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>
<property name="url" value="jdbc:mysql://localhost:3306/HUIKE">
</property>
<property name="username" value="root"></property>
<property name="password" value="rootcode"></property>

<!-- start 江明 优化连接池 -->
<!-- 连接池启动时的初始值 -->
<property name="initialSize" value="1" />
<!-- 连接池的最大值 -->
<property name="maxActive" value="500" />
<!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
<property name="maxIdle" value="2" />
<!--  最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
<property name="minIdle" value="1" />
<!-- end -->
</bean>


<bean id="logListener" class="com.huike.hidp.system.log.LogListener"></bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="eventListeners">
<map>
<entry key="post-commit-update">
<ref bean="logListener" />
</entry>
<entry key="post-commit-insert">
<ref bean="logListener" />
</entry>
<entry key="post-commit-delete">
<ref bean="logListener" />
</entry>
</map>
</property>



<property name="hibernateProperties">
<props>
<prop key="hibernate.hbm2ddl.auto">update</prop> <!-- 首次布署项目时才须执行  -->
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLInnoDBDialect
</prop>
<prop key="hibernate.show_sql">true</prop>    <!-- 显示SQL语句  -->
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<!-- Start eric zhang 新增桌面设计表 -->
<value>com/huike/hidp/system/homepage/vo/Desktopsetup.hbm.xml</value>
<!-- End  -->
<value>
com/huike/hidp/system/homepage/vo/Usermenu.hbm.xml
</value>
<value>
com/huike/hidp/system/logon/vo/User.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/Sex.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/Job.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/Jobtitle.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/Knowledge.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/Marriage.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/National.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/Polity.hbm.xml
</value>
<value>
com/huike/hidp/system/log/vo/Systemlog.hbm.xml
</value>
<value>
com/huike/hidp/system/organization/unit/vo/Unit.hbm.xml
</value>
<value>
com/huike/hidp/system/organization/job/vo/UnitJob.hbm.xml
</value>
<value>
com/huike/hidp/system/organization/job/vo/UserJob.hbm.xml
</value>
<value>
com/huike/hidp/system/organization/unitdeparement/vo/UnitDepartment.hbm.xml
</value>
<value>
com/huike/hidp/system/organization/unitdeparement/vo/UserUnitDepartment.hbm.xml
</value>
<value>
com/huike/hidp/system/organization/position/vo/UnitPosition.hbm.xml
</value>
<value>
com/huike/hidp/system/organization/position/vo/UserUnitPosition.hbm.xml
</value>
<value>
com/huike/hidp/message/innersm/vo/Innersm.hbm.xml
</value>
<value>
com/huike/hidp/basedata/system/vo/Position.hbm.xml
</value>
<value>
com/huike/hidp/system/privilege/user/vo/UnitUser.hbm.xml
</value>
<value>
com/huike/hidp/system/privilege/resource/vo/Resource.hbm.xml
</value>
<value>
com/huike/hidp/system/privilege/role/vo/Role.hbm.xml
</value>
<value>
com/huike/hidp/system/privilege/role/vo/UnitRole.hbm.xml
</value>
<value>
com/huike/hidp/system/privilege/role/vo/UserRole.hbm.xml
</value>
<value>
com/huike/hidp/system/privilege/resoperation/vo/Resoperation.hbm.xml
</value>
<value>
com/huike/hidp/system/privilege/role/vo/RoleResource.hbm.xml
</value>
<!-- start 李永春  邮件管理-->
<value>
com/huike/hidp/message/mail/vo/Mail.hbm.xml
</value>
<value>
com/huike/hidp/message/mail/vo/MailAttch.hbm.xml
</value>
<value>
com/huike/hidp/message/mail/vo/MailCapacity.hbm.xml
</value>
<value>
com/huike/hidp/message/mail/vo/MailContact.hbm.xml
</value>
<value>
com/huike/hidp/message/mail/vo/MailDirectory.hbm.xml
</value>
<value>
com/huike/hidp/message/mail/vo/MailInfo.hbm.xml
</value>
<value>
com/huike/hidp/message/mail/vo/Pop3Mailsetup.hbm.xml
</value>
<value>
com/huike/hidp/message/mail/vo/MailUser.hbm.xml
</value>
<!-- end -->

<value>
com/huike/hidp/system/address/vo/CardcaseGroupDet.hbm.xml
</value>
<value>
com/huike/hidp/system/address/vo/CardcaseGroupMas.hbm.xml
</value>
<!-- start 江明  工作流管理-->
<value>jbpm.repository.hbm.xml</value>
<value>jbpm.execution.hbm.xml</value>
<value>jbpm.history.hbm.xml</value>
<value>jbpm.task.hbm.xml</value>
<value>jbpm.identity.hbm.xml</value>
<value>com/huike/hidp/system/workflow/vo/ProcessState.hbm.xml</value>
<!-- end -->

</list>
</property>
</bean>
<!-- start 江明  配置事务 -->
<!-- 配置事务管理器 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>

<!-- 配置事务的传播特性 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="true"/>
<tx:method name="set*" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>


<!-- 那些类的哪些方法参与事务 -->
<aop:config>
<aop:pointcut id="allManagerMethod"
expression="execution(* com.huike..*.impl..*.*(..))" />
<aop:advisor pointcut-ref="allManagerMethod"
advice-ref="txAdvice" />
</aop:config>
<!-- end -->
</beans>
分享到:
评论

相关推荐

    applicationContext.xml 详细配置

    ApplicationContext.xml 配置详解 ApplicationContext.xml 是 Spring 框架中用于配置应用程序的核心配置文件。通过该文件,可以定义 Bean、数据源、Session 工厂、 Hibernate 配置等相关信息,从而实现应用程序的...

    applicationContext.xml详解

    ApplicationContext.xml详解 ApplicationContext.xml是Spring框架中的核心配置文件,它是Spring的IOC(Inverse of Control,控制反转)容器的核心组件。该文件用于定义和配置Spring应用程序中的各种Bean,对于...

    struts.xml和applicationContext.xml、web.xml的配置

    在Java Web开发中,`struts.xml`, `applicationContext.xml` 和 `web.xml` 是三个至关重要的配置文件,它们各自负责不同的职责,并协同工作来构建一个完整的应用框架。以下是关于这三个配置文件的详细说明。 首先,...

    applicationContext.xml等文件.rar

    在IT行业中,尤其是在Java Web开发领域,`applicationContext.xml`、`db.properties`、`log4j.properties`以及`spring-mvc.xml`等文件是非常关键的配置文件,它们各自负责不同的功能,对于一个完整的应用程序来说不...

    spring3.0 + Quartz1.52 + applicationContext.xml

    这个压缩包“spring3.0 + Quartz1.52 + applicationContext.xml”显然是一个关于如何在Spring 3.0环境中集成Quartz 1.52版本的示例或教程资源。 首先,`applicationContext.xml`是Spring框架的核心配置文件,它定义...

    SSH框架applicationContext.xml头部文件

    ### SSH框架applicationContext.xml头部文件知识点解析 #### 一、SSH框架简介 SSH框架是Struts+Spring+Hibernate三个开源框架的组合,是中国开发者对这三个框架整合应用的一种简称。其中Struts负责MVC(Model-View-...

    Spring 2.5-applicationContext.xml提示信息的配置

    在Spring框架中,`applicationContext.xml`是应用上下文的核心配置文件,用于定义bean的创建、依赖关系以及各种服务的配置。这篇博文“Spring 2.5 - applicationContext.xml提示信息的配置”主要探讨了如何在Spring ...

    ApplicationContext.xml

    《ApplicationContext.xml——Spring框架的核心配置文件详解》 在Java开发领域,Spring框架是不可或缺的一部分,它以其强大的依赖注入(Dependency Injection,简称DI)和面向切面编程(Aspect-Oriented ...

    SSH中applicationContext.xml如何配制事务

    在SSH的applicationContext.xml 中如何配制配制事务

    applicationContext.xml用法

    ### Spring的applicationContext.xml文件详解 #### 一、引言 在Java开发领域,Spring框架因其强大的功能和灵活的设计而受到广泛欢迎。其中,`applicationContext.xml`是Spring框架的核心配置文件之一,它用于管理...

    spring+jpa的applicationContext.xml配置

    spring+jpa的applicationContext.xml配置

    ssm框架基础配置文件web.xml模板springmvc.xml模板applicationContext.xml模板拿来即用

    3. **applicationContext.xml**:这是Spring的上下文配置文件,主要管理服务层(Service)和数据访问层(DAO)的Bean。包括Bean的定义、依赖注入(DI)、事务管理、AOP(面向切面编程)等配置。 - Bean定义:使用`...

    ssm applicationContext.xml,SpringMVC,web设置

    这是一些配置文件,可以作为参考,个人感觉很方便的学习方法

Global site tag (gtag.js) - Google Analytics