spring+mybatis+springmvc的配置

1.web.xml的配置css

<?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">
    
    <!-- 上下文參數(第一啓動),指定jdbc配置文件位置  -->
    <context-param>
        <param-name>contextConfigLocation</param-name>  
        <param-value>classpath:/config/jdbc.xml</param-value>  
      </context-param>     
     
    <!-- spring監聽器(第二啓動),監聽springMvc環境 -->
    <listener>  
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
    </listener>  
    
    <!-- springMvc編碼攔截器(第三啓動),springMvc內置的編碼攔截器 -->
    <filter>  
        <filter-name>encodingFilter</filter-name>  
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>  
    </filter>  
     
    <filter-mapping>  
        <filter-name>encodingFilter</filter-name>  
        <url-pattern>/*</url-pattern>  
    </filter-mapping>
      
      <!-- springMvc前置總控制器(第四啓動),在分發其它的控制器前都要通過這個總控制器 -->
    <servlet>  
        <servlet-name>spring-mvc</servlet-name>  
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
    <init-param>  
        <param-name>contextConfigLocation</param-name>  
        <param-value>classpath:/config/springmvc.xml</param-value>  
    </init-param>  
    <load-on-startup>2</load-on-startup>  
    </servlet>  
     
    <servlet-mapping>  
        <servlet-name>spring-mvc</servlet-name>  
        <url-pattern>*.do</url-pattern>  
    </servlet-mapping>  
    
    <!-- 網站的默認首頁   -->
    <welcome-file-list>
        <welcome-file>begin.jsp</welcome-file>
    </welcome-file-list>
</web-app>

2.spring 的配置文件applicationContext-mybatis.xmljava

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx" 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-3.0.xsd 
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
    http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring-1.2.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"
    default-lazy-init="true">
    <context:component-scan base-package="com.ltf.springmvc" />


    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"
        lazy-init="false">
        <property name="dataSource" ref="dataSource" />
        <property name="mapperLocations" value="classpath:sqlmapper/*Mapper.xml" />
        <property name="configLocation" value="classpath:mybatis/mybatis-config.xml" />
    </bean>

    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate"
        scope="prototype">
        <constructor-arg index="0" ref="sqlSessionFactory" />
    </bean>
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.ltf.springmvc.dao" />
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
    </bean>
    <mybatis-spring:scan base-package="com.ltf.springmvc.dao" />

</beans>

3.jdbc的配置mysql

<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" xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
    <!-- 引入jdbc配置文件 -->
    <context:property-placeholder location="classpath:config/jdbc.properties" />
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
        destroy-method="close">
        <property name="driverClassName">
            <value>${jdbc_driverClassName}</value>
        </property>
        <property name="url">
            <value>${jdbc_url}</value>
        </property>
        <property name="username">
            <value>${jdbc_username}</value>
        </property>
        <property name="password">
            <value>${jdbc_password}</value>
        </property>
        <!-- 鏈接池最大使用鏈接數 -->
        <property name="maxActive">
            <value>20</value>
        </property>
        <!-- 初始化鏈接大小 -->
        <property name="initialSize">
            <value>1</value>
        </property>
        <!-- 獲取鏈接最大等待時間 -->
        <property name="maxWait">
            <value>60000</value>
        </property>
        <!-- 鏈接池最大空閒 -->
        <property name="maxIdle">
            <value>20</value>
        </property>
        <!-- 鏈接池最小空閒 -->
        <property name="minIdle">
            <value>3</value>
        </property>
        <!-- 自動清除無用鏈接 -->
        <property name="removeAbandoned">
            <value>true</value>
        </property>
        <!-- 清除無用鏈接的等待時間 -->
        <property name="removeAbandonedTimeout">
            <value>180</value>
        </property>
        <!-- 鏈接屬性 -->
        <property name="connectionProperties">
            <value>clientEncoding=UTF-8</value>
        </property>
    </bean>
  <!-- 數據源事務管理 -->
    <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource" />
    </bean>
    
    <!-- 自動掃描組件,須要把controller去掉,不然影響事務管理 -->  
    <context:component-scan base-package="com.springmvc">
        <context:exclude-filter type="regex" expression="com.spring.web.*" />
    </context:component-scan>     

</beans>

4.jdbc.propertiesweb

jdbc_driverClassName=com.mysql.jdbc.Driver
jdbc_url=jdbc:mysql://localhost:3306/demo?useUnicode=true&amp;characterEncoding=utf-8
jdbc_username=root
jdbc_password=123456

5.springmvc配置spring

<?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:p="http://www.springframework.org/schema/p"     
    xmlns:context="http://www.springframework.org/schema/context"     
    xmlns:mvc="http://www.springframework.org/schema/mvc"     
    xsi:schemaLocation="      
           http://www.springframework.org/schema/beans      
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd      
           http://www.springframework.org/schema/context      
           http://www.springframework.org/schema/context/spring-context-3.0.xsd     
           http://www.springframework.org/schema/mvc      
           http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">  
        
    <!-- 啓動時掃描全部的controller -->
    <context:component-scan base-package="com.springmvc.web" />
    
    <!--  主要做用於@Controller,激活該模式,下面是一種簡寫形式,徹底能夠手動配置替代這種簡寫形式,它會自動註冊DefaultAnnotationHandlerMapping與AnnotationMethodHandlerAdapter,是spring MVC爲@Controllers分發請求所必須的   -->
    <mvc:annotation-driven />
    
    <!-- 配置js,css等靜態文件直接映射到對應的文件夾,不被DispatcherServlet處理 -->
    <mvc:resources location="/WEB-INF/resources/**" mapping="/resources" />
    
    <!-- jsp頁面解析器,當Controller返回XXX字符串時,先經過攔截器,而後該類就會在/WEB-INF/views/目錄下,查找XXX.jsp文件 -->  
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/views/" />
        <property name="suffix" value=".jsp" />
    </bean>
   
</beans>
相關文章
相關標籤/搜索