【SSM-报销单】2.创建项目

【SSM-报销单】2.创建项目_第1张图片

1.创建maven项目oa

2.在oa下创建oa_dao

(1) pom.xml


    
        mysql
        mysql-connector-java
        8.0.15
    
    
        org.mybatis
        mybatis-spring
        1.3.1
    
    
        org.mybatis
        mybatis
        3.4.5
    


    
        org.springframework
        spring-jdbc
        5.1.7.RELEASE
    
    
        org.springframework
        spring-beans
        5.1.7.RELEASE
    
    
        org.springframework
        spring-core
        5.1.7.RELEASE
    
    
        org.springframework
        spring-context
        5.1.7.RELEASE
    
    
        org.springframework
        spring-expression
        5.1.7.RELEASE
    
    

3.在oa下创建oa_biz 业务层

pom.xml

  
        
            com.imooc
            oa_dao
            1.0-SNAPSHOT
        

        
            org.springframework
            spring-tx
            5.1.7.RELEASE
        
        
            org.springframework
            spring-aop
            5.1.7.RELEASE
        
        
            org.aspectj
            aspectjweaver
            1.9.4
        
    

4.在oa下创建oa_web 表现层

(1)pom.xml

 
        
            com.imooc
            oa_biz
            1.0-SNAPSHOT
        

        
            javax.servlet
            javax.servlet-api
            4.0.1
        

        
            jstl
            jstl
            1.2
        

        
            org.springframework
            spring-web
            5.1.7.RELEASE
        
        
            org.springframework
            spring-webmvc
            5.1.7.RELEASE
        

    

【SSM-报销单】2.创建项目_第2张图片

你可能感兴趣的:(项目)