ssm配置文件

1.web.xml

        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

        xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"

        version="3.1">

  Archetype Created Web Application

 

 

        CharacterEncodingFilter

        org.springframework.web.filter.CharacterEncodingFilter

       

            encoding

            UTF-8

       

   

   

        CharacterEncodingFilter

        /*

   


   

   

        dispatcherServlet

        org.springframework.web.servlet.DispatcherServlet

       

       

            contextConfigLocation

            classpath:spring-mvc.xml

       

       

        1

   

   

   

        dispatcherServlet

       

        *.do

   



   

   

        contextConfigLocation

        classpath:applicationContext.xml

   

   

        org.springframework.web.context.ContextLoaderListener

   

   

        log4jConfigLocation

        classpath:log4j.properties

   

   

   

        org.springframework.web.util.Log4jConfigListener

   



   

      404

      /WEB-INF/errors/404.jsp

   

   

      500

      /WEB-INF/errors/500.jsp

   


        index.jsp

   


2.spring-mybatis.xml

    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-4.1.xsd     

                        http://www.springframework.org/schema/context     

                        http://www.springframework.org/schema/context/spring-context-4.0.xsd     

                        http://www.springframework.org/schema/mvc     

                        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">   

       

   

         

     

     

   

   

     


   

        destroy-method="close">   

       

       

       

       

           

           

           

           

           

           

           

           

           

           

       


       

       

           

           

           

       


       

       

           

           

       


       

   

        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">   

           

       

   

   


3.spring-mvc.xml

      xmlns:mvc="http://www.springframework.org/schema/mvc"

      xmlns:context="http://www.springframework.org/schema/context"

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

      xsi:schemaLocation="

        http://www.springframework.org/schema/beans

        http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www.springframework.org/schema/mvc

        http://www.springframework.org/schema/mvc/spring-mvc.xsd

        http://www.springframework.org/schema/context

        http://www.springframework.org/schema/context/spring-context.xsd">

   

   

       

   

   

   


   

   

       

       

       

         

       

           

     


       

   

        class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">   

           

               

                text/html;charset=UTF-8   

               

           

       



       

   

        class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">   

           

               

                   

               

           

       






       

   

        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">     

           

             

           

             

           

             

       





 

4.applicationcontext.xml

      xmlns:context="http://www.springframework.org/schema/context"

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

      xmlns:aop="http://www.springframework.org/schema/aop"

      xmlns:tx="http://www.springframework.org/schema/tx"

      xmlns:p="http://www.springframework.org/schema/p"

      xsi:schemaLocation="

                    http://www.springframework.org/schema/context

                    http://www.springframework.org/schema/context/spring-context.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.xsd

                    http://www.springframework.org/schema/aop

                    http://www.springframework.org/schema/aop/spring-aop.xsd">

         

   

         

     

     

   

   

   

   

   

   

   

   

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

   

   

   

   

          class="org.mybatis.spring.SqlSessionFactoryBean"

          p:dataSource-ref="dataSource"

          p:typeAliasesPackage="com.market.entity"

          p:mapperLocations="classpath:mapper/*.xml"/>

           

   

   

         

   

          p:basePackage="com.market.dao"

          p:sqlSessionFactoryBeanName="sqlSessionFactory"/>

   

   

          class="org.springframework.jdbc.datasource.DataSourceTransactionManager"

          p:dataSource-ref="dataSource"/>

   

   

   

   

       

       

           

           

           

           

           

       

   

   

   

       

           

           

           

           

           

           

           

           

           

           

           

           

       

   

   

   


你可能感兴趣的:(ssm配置文件)