程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 用JSF+Spring+IBatis搭建一個簡單框架

用JSF+Spring+IBatis搭建一個簡單框架

編輯:關於JAVA

web.xml:關鍵是插入Spring的監聽

<listener>
    <listener-class>
      org.apache.myfaces.webapp.StartupServletContextListener
    </listener-class>
  </listener>
  <listener>
    <listener-class>
      org.springframework.web.context.ContextLoaderListener
    </listener-class>
  </listener>

Spring配置文件applicationContext.xml:這裡是把IBatis的數據源寫在Spring的文件中,使Spring和IBatis結合起來

<!-- dateSource -->
  <bean id="dataSource"
    class="org.apache.commons.dbcp.BasicDataSource"
    destroy-method="close">
    <property name="driverClassName">
      <value>com.mysql.jdbc.Driver</value>
    </property>
    <property name="url">
      <value>jdbc:mysql://192.168.102.19/bookadmin</value>
    </property>
    <property name="username">
      <value>bookadmin</value>
    </property>
    <property name="password">
      <value>123456</value>
    </property>
  </bean>
  <!-- sqlMapClient -->
  <bean id="sqlMapClient"
    class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
    <property name="configLocation">
 <value>
        classpath:thiz/ks/bookadmin/dao/ibatis/SqlMapConfig.xml
      </value>
    </property>
  </bean>

IBatis的SqlMap文件SqlMapConfig.xml和JSF的配置文件faces-config.xml:該怎麼寫還是怎麼寫。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved