SSSP框架整合之路

SSSP是:SpringMvc,Spring,SpringData,JPA(hibernate)的整合

第一步:创建web项目工程文件,导入所需jar包

第二步:配置web.xml的文件



    
    
        springmvc
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:spring-servlet.xml
        
        1
    
    
        springmvc
        /
    
    
    
        contextConfigLocation
        classpath:applicationContext.xml
    
    
        org.springframework.web.context.ContextLoaderListener
    
第二步:配置数据库db.peoperties

db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/jap
db.username=root
db.password=root

第三步:配置SpringMvc的配置文件spring-servlet.xml




    
    
    
        
    
    
    
        
        
    

第四步:配置SpringMvc的配置文件applicationContext.xml



    
    
    
        
    
    
    
    
        
        
        
        
    

    
    
        
        
        
            
        
        
        
        
            
                true
                true
                update
            
        
    
    
    
    
        
    
    
    


第五步:测试配置的环是否可用

只需通过这五步就可以完成SSSP的整合

空白的SSSP框架的代码:http://download.csdn.net/detail/strive_peter/9916238

你可能感兴趣的:(框架整合)