【我的SSM博客实战01】ssm框架的搭建

使用工具:

Eclipse
MySQL
tomcat7.0

使用框架:

springMvc
spring
mybits

1.我们先搭建出web项目,如 [图1] 点击Finish

【我的SSM博客实战01】ssm框架的搭建_第1张图片
图1

2.搭建之后如【图2】,我们添加了tomcat7.0的包,同时new出一个index.jsp

【我的SSM博客实战01】ssm框架的搭建_第2张图片
图2

图2中:
src文件夹存放java代码,以及配置文件;
WebContent文件夹下面存放用户可访问资源;
web.xml存放配置文件,并且项目启动时最先访问的就是这个配置文件;

3.我们需要添加jar包到WebContent/WEB-INF/lib里面
ssm所需jar包 密码:bx2z

4.接下来就是在web.xml对spring,springmvc的支持



    mybolg
    
        index.html
        index.htm
        index.jsp
        default.html
        default.htm
        default.jsp
    

    
    
        contextConfigLocation
        classpath:applicationContext.xml
    
    
    
        org.springframework.web.context.ContextLoaderListener
    
    
    
    
        springmvc
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:springmvc.xml
        
        1
    
    
        springmvc
        /
    

4.根据上面classpath产生了两个文件applicationContext.xml , springmvc.xml
classpath即是类路径的意思,后缀为.java的源程序编译成功之后会生成后缀为.class的类文件。
applicationContext.xml




    
    

    
    
        
        
        
        
        
        
    

    
    
        
        
        
    
    
    
        
        
    
    
    
        
    

    
    


springmvc.xml




    
    

    
    

    
    
    
    
    
        
        
    

5.根据上面两个配置文件产生了两个必须的文件
sqlMapConfig.xml




    
        
        
        
    
    
    
        
        
    


db.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybolg?characterEncoding=UTF8
jdbc.username=root
jdbc.password=root

至此框架搭起来了

你可能感兴趣的:(【我的SSM博客实战01】ssm框架的搭建)