ssm框架搭建

pom.xml


    
        4.0.2.RELEASE
        3.2.8
        1.7.12
        1.2.17
    

    
        
            junit
            junit
            3.8.1
            test
        

        
            javax.servlet
            javax.servlet-api
            3.1.0
            provided
        

        
        
            javax
            javaee-api
            7.0
            provided
        

        
        
            org.springframework
            spring-test
            ${srping.version}
        

        
            org.springframework
            spring-core
            ${srping.version}
        

        
            org.springframework
            spring-oxm
            ${srping.version}
        

        
            org.springframework
            spring-tx
            ${srping.version}
        

        
            org.springframework
            spring-jdbc
            ${srping.version}
        

        
            org.springframework
            spring-aop
            ${srping.version}
        

        
            org.springframework
            spring-context
            ${srping.version}
        

        
            org.springframework
            spring-context-support
            ${srping.version}
        

        
            org.springframework
            spring-expression
            ${srping.version}
        

        
            org.springframework
            spring-orm
            ${srping.version}
        

        
            org.springframework
            spring-web
            ${srping.version}
        

        
            org.springframework
            spring-webmvc
            ${srping.version}
        

        
        
        
            org.mybatis
            mybatis
            ${mybatis.version}
        

        
            org.mybatis
            mybatis-spring
            1.2.2
        

        
        
        
            mysql
            mysql-connector-java
            5.1.35
        

        
        
            commons-dbcp
            commons-dbcp
            1.4
        

        
        
            jstl
            jstl
            1.2
        

        
        
            log4j
            log4j
            ${log4j.version}
        

        
            org.slf4j
            slf4j-api
            ${slf4j.version}
        

        
            org.slf4j
            slf4j-log4j12
            ${slf4j.version}
        

        
        
        
        
            com.alibaba
            fastjson
            1.2.6
        

        
            org.codehaus.jackson
            jackson-mapper-asl
            1.9.13
        

        
        
            commons-fileupload
            commons-fileupload
            1.3.1
        

        
            commons-io
            commons-io
            2.4
        

        
            commons-codec
            commons-codec
            1.10
        

        
        
            junit
            junit
            4.12
        

        
        
            com.github.pagehelper
            pagehelper
            4.1.6
       

       
            com.github.jsqlparser
            jsqlparser
            0.9.6
       

    

    
        
            
                org.apache.maven.plugins
                maven-compiler-plugin
                
                
                    1.8
                    1.8
                    utf-8
                

            

        

        
          
           src/mian/java
            
              **.xml
            

          

        

    

 

===========================

web.xml配置


    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    version="2.5">
    ultra-crm
    
        index.html
    


    
    
        contextConfigLocation
        classpath:applicationContext.xml
    

    
        org.springframework.web.context.ContextLoaderListener
    

    
    
        springDispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:springmvc.xml
        

        1
    

    
        springDispatcherServlet
        /
    


    
    
        encodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
        
            encoding
            UTF-8
        

    

    
        encodingFilter
        *
    


    
        log4jConfigLocation
        classpath:/log4j.properties
    

    
    
        org.springframework.web.util.Log4jConfigListener
    

    
        120
    

=========================================

spring-mvc 配置文件


    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"
    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/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.2.xsd
    http://www.springframework.org/schema/aop  
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">

   
   
     
   

    
    
   
             class="org.springframework.context.support.ResourceBundleMessageSource">
        
    

    
             class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        
        
        
    

    
   
    
    
        
          
    

    
   
   
    

=====================================

applicationContext.xml配置信息


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">

    
             base-package="com.ultra.power">
        
        
    

    
             class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        
            
                classpath:jdbc.properties
            

        

    

    
    

             class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
        
        
        
        
        
        
        
        
        
        
        
        
        
        
    

    
             class="org.mybatis.spring.SqlSessionFactoryBean">
        
        
                     value="classpath:com/ultra/power/mapper/*.xml">
    

    
    
        
                     value="sqlSessionFactory">
    

   
    
        
    

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

    
             transaction-manager="transactionManager" />


 

 

 

 

你可能感兴趣的:(ssm框架搭建)