SSSP(Spring、SpringData、SpringMVC、JPA)整合步骤

1.创建web工程

SSSP(Spring、SpringData、SpringMVC、JPA)整合步骤_第1张图片

2.导入整合所需要的Jar包

SSSP(Spring、SpringData、SpringMVC、JPA)整合步骤_第2张图片

   SSSP(Spring、SpringData、SpringMVC、JPA)整合步骤_第3张图片

3.加入spring,添加applicationContext.xml

4.加入SpringMVC,添加SpringDispatcherServlet-servlet.xml

5.配置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"
    id="WebApp_ID" version="2.5">

    
    
        contextConfigLocation
        classpath:applicationContext.xml
    

    
        org.springframework.web.context.ContextLoaderListener
    

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

    

    
        CharacterEncodingFilter
        /*
    

    
    
        HiddenHttpMethodFilter
        org.springframework.web.filter.HiddenHttpMethodFilter
    

    
        HiddenHttpMethodFilter
        /*
    

    
    
        OpenEntityManagerInViewFilter
        org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter
    

    
        OpenEntityManagerInViewFilter
        /*
    

    
    
        springDispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        1
    

    
        springDispatcherServlet
        /
    

 

6.配置SpringMVC


    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"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    
    
        
        
    

    
    
    
        
        
    

    
    


 

7.配置Spring


    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:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.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">

    
    
        
        
    

    
    
    

             class="com.mchange.v2.c3p0.ComboPooledDataSource">
            
            
            
            
        
        
    

    
    
             class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
        
        
            
        
    
        
        
            
                org.hibernate.cfg.ImprovedNamingStrategy
                update
                true
                true
                org.hibernate.dialect.MySQL5InnoDBDialect
                
                true
                org.hibernate.cache.ehcache.EhCacheRegionFactory
                true
            

        

        
    

    
    
             class="org.springframework.orm.jpa.JpaTransactionManager">
            
    

    
    
    
    
    
             entity-manager-factory-ref="entityManagerFactory">

 

你可能感兴趣的:(Spring,SSSP,SpringMVC,SpringData,JPA)