SSM搭建开发环境(Spring+SpringMVC+MyBatis)

一 、pom文件


    
      org.springframework
      spring-context
      4.3.10.RELEASE
    

    
    
      org.aspectj
      aspectjweaver
      1.8.3
    

    
    
      org.springframework
      spring-jdbc
      4.3.10.RELEASE
    

    
    
      mysql
      mysql-connector-java
      5.1.38
    

    
    
      com.alibaba
      druid
      1.0.24
    
    
    
      jstl
      jstl
      1.2
    
    
    
      javax.servlet
      servlet-api
      2.5
    
    
    
	
      com.alibaba
      fastjson
      1.2.58
    
    
    
      com.google.code.gson
      gson
      2.8.5
    

    
    
      org.mybatis
      mybatis
      3.4.6
    

    
      org.mybatis
      mybatis-spring
      1.3.2
    

    
    
      log4j
      log4j
      1.2.17
    
    
    
      com.github.pagehelper
      pagehelper
      5.1.8
    
    
    
      org.springframework
      spring-web
      4.3.10.RELEASE
    

    
      org.springframework
      spring-webmvc
      4.3.10.RELEASE
    
    

    
      commons-fileupload
      commons-fileupload
      1.3.1
    

    
      commons-io
      commons-io
      2.4
    

二、和数据库连接的配置文件(jdbc.properties)

jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost/**mysql数据库库名**?useUnicode=true&characterEncoding=utf8
jdbc.user=账号名
jdbc.password=密码

三、spring.xml配置文件



    
    
        
    
    
    
    
    
        
        
        
        
    
    
    
        
        
        
        
        
        
        
            
                
                    
                        
                            helperDialect=mysql
                        
                    
                
            
        
    

    
   
    
    
    
    
        
    


    
    
        
    
    
        
            
            
        
    
    
    
        
        
    

四、web.xml文件




  
    springMVC
    org.springframework.web.servlet.DispatcherServlet
    
    
      contextConfigLocation
      classpath:mvc.xml
    
    
    1
  


  
    springMVC
    
    *.do
  

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

  
    encoding
    /*
  
  
  
    org.springframework.web.context.ContextLoaderListener
  

  
    contextConfigLocation
    classpath:applicationContext.xml
  



五、mvc.xml配置文件




    
    
	
    
   
              
                     
                     
                            
                            
                                   
                                          application/json;charset=UTF-8
                                   
                            
                     
              
       


    
        
        
    


    
    
        
        
            
            
            
            
        
    

你可能感兴趣的:(原创,java,web开发,SSM框架开发环境)