使用idea实现品优购项目搭建

使用idea搭建maven项目工程详细步骤:

创建pinyougou-parent父工程

点击File ->New->Module…,创建maven项目

 使用idea实现品优购项目搭建_第1张图片

点击Next

使用idea实现品优购项目搭建_第2张图片

点击Next

使用idea实现品优购项目搭建_第3张图片

点击Next

♦点击Finish,完成

添加pom文件内容如下:




  4.0.0

  com-pinyougou
  pinyougou-parent
  1.0-SNAPSHOT
  pom

    
    
        4.12
        4.2.4.RELEASE
        4.0.0
        2.5
        2.8.4
        3.4.7
        0.1
        3.2.8
        1.2.2
        1.2.15
        5.1.32
        1.0.9
        1.3.1
        2.3.23
        5.11.2
        3.2.3.RELEASE
        4.10.3
        2012_u6
    

    
        

            
            
                org.springframework
                spring-context
                ${spring.version}
            
            
                org.springframework
                spring-beans
                ${spring.version}
            
            
                org.springframework
                spring-webmvc
                ${spring.version}
            
            
                org.springframework
                spring-jdbc
                ${spring.version}
            
            
                org.springframework
                spring-aspects
                ${spring.version}
            
            
                org.springframework
                spring-jms
                ${spring.version}
            
            
                org.springframework
                spring-context-support
                ${spring.version}
            
            
                org.springframework
                spring-test
                ${spring.version}
            
            
            
                com.alibaba
                dubbo
                ${dubbo.version}
            
            
                org.apache.zookeeper
                zookeeper
                ${zookeeper.version}
            
            
                com.github.sgroschupf
                zkclient
                ${zkclient.version}
            
            
                junit
                junit
                4.9
            
            
                com.alibaba
                fastjson
                1.2.28
            
            
                javassist
                javassist
                3.11.0.GA
            
            
                commons-codec
                commons-codec
                1.10
            
            
                javax.servlet
                servlet-api
                2.5
                provided
            
            
                com.github.pagehelper
                pagehelper
                ${pagehelper.version}
            
            
            
                org.mybatis
                mybatis
                ${mybatis.version}
            
            
                org.mybatis
                mybatis-spring
                ${mybatis.spring.version}
            
            
                com.github.miemiedev
                mybatis-paginator
                ${mybatis.paginator.version}
            
            
            
                mysql
                mysql-connector-java
                ${mysql.version}
            
            
            
                com.alibaba
                druid
                ${druid.version}
            
            
                org.csource.fastdfs
                fastdfs
                1.2
            
            
            
                commons-fileupload
                commons-fileupload
                ${commons-fileupload.version}
            
            
            
                redis.clients
                jedis
                2.8.1
            
            
                org.springframework.data
                spring-data-redis
                1.7.2.RELEASE
            
            
                org.freemarker
                freemarker
                ${freemarker.version}
            
            
                org.apache.activemq
                activemq-all
                ${activemq.version}
            
            
            
                org.springframework.security
                spring-security-web
                4.1.0.RELEASE
            
            
                org.springframework.security
                spring-security-config
                4.1.0.RELEASE
            
            
                com.github.penggle
                kaptcha
                2.3.2
                
                    
                        javax.servlet
                        javax.servlet-api
                    
                
            
            
                org.springframework.security
                spring-security-cas
                4.1.0.RELEASE
            
            
                org.jasig.cas.client
                cas-client-core
                3.3.3
                
                
                    
                        org.slf4j
                        log4j-over-slf4j
                    
                
            
            
            
                org.apache.solr
                solr-solrj
                ${solrj.version}
            
            
                com.janeluo
                ikanalyzer
                ${ik.version}
            
            
                org.apache.httpcomponents
                httpcore
                4.4.4
            
            
                org.apache.httpcomponents
                httpclient
                4.5.3
            
            
                dom4j
                dom4j
                1.6.1
            
            
                xml-apis
                xml-apis
                1.4.01
            
        

    



    

        
            
            
                org.apache.maven.plugins
                maven-compiler-plugin
                3.2
                
                    1.8
                    1.8
                    UTF-8
                
            

        

    

注意pom的打包方式是pom

创建公用工程pinyougou-common

点击File->New->Module…,进入以下界面,请按照下图红色框框进行选中

使用idea实现品优购项目搭建_第4张图片

点击Next

使用idea实现品优购项目搭建_第5张图片

点击Next

使用idea实现品优购项目搭建_第6张图片

 

♦点击Finish,完成

添加pom文件内容如下:



    
        pinyougou-parent
        com.pinyougou
        1.0-SNAPSHOT
    
    4.0.0
    pinyougou-cpmmon

注意pom的打包方式是jar

创建pinyougou-dao工程和pinyougou-pojo工程等子工程步骤和pinyougou-common基本上一样

 

创建pinyougou-manager-web项目

使用idea实现品优购项目搭建_第7张图片

后面的步骤和pinyougou-common一样的

 

 

你可能感兴趣的:(品优购)