`
kofa4891
  • 浏览: 11084 次
  • 性别: Icon_minigender_1
  • 来自: 海南
最近访客 更多访客>>
社区版块
存档分类
最新评论

spring+ibatis xml文件配置

阅读更多

applicationContext-jdbc.xml

<?xml version="1.0" encoding="UTF-8"?>
<!--
Application context definition for PetClinic on JDBC.
-->
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context" xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
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/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
    <context:property-placeholder location="classpath:jdbc.properties"/>
   
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
        <property name="driverClass" value="${jdbc.driverClassName}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
        <property name="user" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
        <property name="minPoolSize" value="5" />  
        <property name="maxPoolSize" value="50" />  
        <property name="maxIdleTime" value="60" />  
        <property name="acquireIncrement" value="3" />  
        <property name="maxStatements" value="0" />  
        <property name="initialPoolSize" value="3" />  
        <property name="idleConnectionTestPeriod" value="60" />  
        <property name="acquireRetryAttempts" value="30" />
        <property name="acquireRetryDelay" value="1000" /> 
        <property name="breakAfterAcquireFailure" value="false" />  
        <property name="testConnectionOnCheckout" value="false" />
   </bean>
  
    <bean id="defaultLobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" lazy-init="true"/>
   
    <bean id="oracleLobHandler" class="org.springframework.jdbc.support.lob.OracleLobHandler" lazy-init="true">
        <property name="nativeJdbcExtractor" ref="nativeJdbcExtractor"/>
    </bean>
   
    <bean id="nativeJdbcExtractor" class="org.springframework.jdbc.support.nativejdbc.C3P0NativeJdbcExtractor"
   lazy-init="true"/>
  
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"
p:dataSource-ref="dataSource"/>
   
    <bean id="sqlMapClient" name="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="configLocation" value="classpath:sql-map-config.xml"/>
<property name="dataSource" ref="dataSource"/>
   </bean>
  
<bean id="demoUserDwr" class="com.ys.demo.dwr.DemoUserDwr">
<property name="demoUserService" ref="demoUserService" />
</bean>


<context:annotation-config/>

     <context:component-scan base-package="com.ys.demo.dao">
     </context:component-scan>
     <context:component-scan base-package="com.ys.demo.service">
     </context:component-scan>

  <tx:annotation-driven proxy-target-class="false" transaction-manager="transactionManager" mode="proxy"/>
</beans>


dwr.xml
<!DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 2.0//EN" "http://getahead.org/dwr//dwr20.dtd">

<dwr>
  <allow>
    <create creator="spring" javascript="DemoUser">
      <param name="beanName" value="demoUserDwr"/>
     
      <!-- 允许访问的方法 -->
     <include method="addDemoUser"/>
     
      <!-- 拒绝访问的方法 -->
      <!-- <exclude method="addDemoUser"/>-->
    </create>
  </allow>
</dwr>

web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <context-param>
        <param-name>log4jConfigLocation</param-name>
        <param-value>/WEB-INF/classes/log4j.properties</param-value>
    </context-param>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext-jdbc.xml </param-value>
    </context-param>
   
    <filter>
<filter-name>EncodeFilter</filter-name>
<filter-class>com.ys.demo.common.EncodeFilter</filter-class>
<init-param>
<param-name>encode</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
    <filter-mapping>
<filter-name>EncodeFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
   
    <servlet>
        <servlet-name>dwr-invoker</servlet-name>
        <servlet-class>org.directwebremoting.servlet.DwrServlet</servlet-class>
        <init-param>
            <param-name>debug</param-name>
            <param-value>true</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>dwr-invoker</servlet-name>
        <url-pattern>/dwr/*</url-pattern>
    </servlet-mapping>
   
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>
分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    struts2+spring+ibatis+mysql

    Ibatis通过XML或注解方式配置和映射SQL,避免了JDBC的繁琐操作,提高了开发效率,同时保持了良好的性能。 4. **MySQL**:MySQL是一款广泛使用的开源关系型数据库,以其高性能、高可用性、易于管理和免费等特点受到...

    Struts2+Spring+Hibernate和Struts2+Spring+Ibatis

    在这个例子中,Ibatis的SqlMapConfig.xml文件将配置数据库连接和映射文件,Action类会调用Service层的方法,Service层通过Ibatis的SqlSession执行SQL。 整合这两个框架,开发者通常需要做以下工作: - 配置Struts2...

    struts2+spring+Ibatis框架包

    接着,配置Spring的上下文配置文件(如applicationContext.xml),声明Bean及其依赖关系。最后,配置iBatis的SqlMapConfig.xml,定义数据源、事务管理器以及Mapper接口。 总的来说,这个"struts2+spring+iBatis框架...

    maven搭建SpringMVC+spring+ibatis

    "WEB-INF"目录是Web应用的标准结构之一,其中包含了web.xml配置文件,这是Web应用的部署描述符,用于配置Servlet、Filter、Listener等组件,以及类库(lib目录)和应用的视图资源(例如JSP文件)。 综上所述,...

    struts+spring+ibatis做的一个增删改查例子

    在Struts+Spring+iBATIS的架构中,iBATIS负责与数据库交互,通过SQL映射文件(sqlmap.xml)定义SQL查询、插入、更新和删除操作。它与Spring整合后,可以在Spring的事务管理下执行数据库操作,确保数据的一致性。 在...

    spring+ibatis配置实例

    2. `src/main/resources`:放置配置文件,如Spring的`applicationContext.xml`和`sqlMapConfig.xml`,以及数据库连接配置等。 3. `src/main/webapp`:Web应用目录,包含静态资源(如HTML、CSS、JavaScript),以及...

    struts+spring+ibatis的Demo

    1. **配置文件**:如struts.xml、spring配置文件(可能包含applicationContext.xml和struts-spring.xml)、ibatis的配置文件(sqlMapConfig.xml)。 2. **实体类(Entity)**:表示数据库中的表结构。 3. **Mapper...

    Spring+ibatis 保留ibatis事务的配置

    给定的XML配置文件展示了如何在Spring中配置ibatis数据源以及ibatis事务管理器。首先,注释掉的`BasicDataSource`部分是用来配置数据源的,这里没有启用,而是选择了使用JNDI数据源。实际生产环境中,通常会使用...

    webwork+spring+ibatis很适合初学者的实例

    5. **iBATIS配置**:设置SqlMapConfig.xml文件,配置数据源、SQL映射文件路径等。 6. **WebWork配置**:配置web.xml,设置过滤器和监听器,指定WebWork的配置文件路径。 7. **动作类和控制器**:编写WebWork的动作类...

    maven3+struts2+spring+ibatis

    maven3+struts2+spring+ibatis,本来是用maven3+struts2+spring+hibernate但考虑到hibernate在多表级联查询的时候执行效率不高,所以改用性能更好不过sql比较麻烦的的ibatis,本项目只有登录和插入数据,仅供参考: ...

    spring+struts2+ibatis整合的jar包

    为了成功地使用这个jar包,开发者需要确保项目的类路径包含了这些库,并且正确配置了Spring、Struts2和iBatis的配置文件。 总的来说,Spring、Struts2和iBatis的整合为Java Web开发提供了一个强大、灵活的解决方案...

    spring+ibatis+oracle分页缓存源码

    通过配置XML映射文件或注解,iBatis能够将Java对象与数据库表进行映射,方便数据的增删改查操作。 Oracle数据库是一个强大的关系型数据库管理系统,广泛用于企业级应用。在分页查询场景下,Oracle提供了一系列优化...

    Struts+Spring+Ibatis整合框架搭建配置文档

    #### 二、Spring配置文件(applicationContext.xml)的修改 **1. 配置JDBC数据源** 在`applicationContext.xml`中,需配置数据源以连接数据库。这通常通过读取外部的`jdbc.properties`文件来实现,以支持不同的...

    Spring+Struts+ibatis讲解

    1. `ibatis-config.xml`是Ibatis的主要配置文件,包含数据库连接信息、类型别名、映射文件位置等配置。 2. 每个DAO接口对应一个XML映射文件,如`UserMapper.xml`,在其中定义SQL语句、结果映射等。 Spring+Struts+...

    Struts+Spring+iBATIS做的XML文件操作例子

    在这个"Struts+Spring+iBATIS做的XML文件操作例子"中,我们将深入探讨这三个框架如何协同工作以及XML文件在其中的作用。 Struts 是一个基于MVC(Model-View-Controller)设计模式的Java Web框架,它主要用于控制...

    Struts+Spring+Ibatis示例

    - `spring` 目录:包含Spring的配置文件和bean定义。 - `ibatis` 目录:包含iBatis的映射文件和Mapper接口。 - `webapp` 目录:Web应用的根目录,含有JSP页面和其他静态资源。 通过分析这个示例,开发者可以学习到...

    Struts2+spring+ibatis三大框架整合实例

    3. **配置Spring**:创建spring的配置文件(如applicationContext.xml),定义Bean,包括业务服务接口和实现类,以及数据源和SqlSessionFactory。 4. **配置iBatis**:编写mybatis-config.xml,设置数据源,定义...

    eclipse+spring+ibatis搭建项目基础代码

    自己亲自用eclipse+spring+ibatis搭建的基本框架,含有所需的JAR包,下载后只需更改sql2005的连接字符串,即WEB-INF/db-context.xml中的配置,并更改ibatis的xml文件中的sql语句即可运行。

    struts+spring+ibatis框架

    iBatis将数据访问逻辑封装在XML配置文件或注解中,通过SQL映射文件来定义SQL语句,然后通过Java接口或Mapper来执行这些SQL。这种方式既避免了JDBC的繁琐,又比ORM框架如Hibernate更为轻便,适合对SQL有高度定制需求...

    struts2+spring+ibatis的小demo

    通过XML配置文件或者注解,我们可以定义SQL映射,iBatis会根据这些配置动态生成SQL并执行,然后将结果转换为Java对象。 **整合流程**: 1. 用户在前端界面填写登录信息并提交,请求发送到Struts2的Action。 2. ...

Global site tag (gtag.js) - Google Analytics