如果你从官网上下载的ibatis 那里面有demo,lz可以看看

解决方案 »

  1.   

    我有一个例子,但是加上jar包就比较大了,用QQ给你传过去吧,我QQ:136452993
      

  2.   

    一个配置片段
    web.xml配置
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" 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/web-app_2_5.xsd">
        <filter>
            <filter-name>struts-cleanup</filter-name>
            <filter-class>
                 org.apache.struts2.dispatcher.ActionContextCleanUp
            </filter-class>
        </filter>
        <filter-mapping>
            <filter-name>struts-cleanup</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
        <filter>
            <filter-name>struts2</filter-name>
            <filter-class>
                 org.apache.struts2.dispatcher.FilterDispatcher
            </filter-class>
        </filter>    <filter-mapping>
            <filter-name>struts2</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>    <listener>
            <listener-class>
                 org.springframework.web.context.ContextLoaderListener
            </listener-class>
        </listener>
        <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>
                 classpath:applicationContext.xml,classpath:applicationContext-extend.xml
            </param-value>
        </context-param>
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
    </web-app>struts.properties
    1 struts.objectFactory=spring
    2 struts.objectFactory.spring.autoWire=autoapplicationContext.xml01      <!-- 配置ibatis -->
    02     <bean id="sqlMapClient"
    03         class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
    04         <property name="configLocation">
    05             <value>classpath:SqlMapConfig.xml</value>
    06         </property>
    07         <property name="dataSource">
    08             <ref bean="dataSource" />
    09         </property>
    10     </bean>
    1      <!-- 配置DAO -->
    2     <bean id="AdminDAO" class="cn.edu.hit.mis.dao.AdminDAOImpl">
    3         <property name="sqlMapClient">
    4             <ref bean="sqlMapClient" />
    5         </property>
    6     </bean>
    其他地方都一样