SSM项目---淘淘商城(IDEA开发)

淘淘商城(SSM)—–day01


    1. 后台管理系统工程搭建


      1.1 父工程的搭建 : - 父工程应该是一个pom工程 , 在父工程中定义依赖的jar包信息.


      SSM项目---淘淘商城(IDEA开发)_第1张图片

      • SSM项目---淘淘商城(IDEA开发)_第2张图片


      1.2 创建一个common工程 : 需要继承taotao-parent工程

      pom文件 :依赖里是项目需要的公共组件



      SSM项目---淘淘商城(IDEA开发)_第3张图片


    1.3 taotao-manager工程

    pom文件


            <dependencies>
                <dependency>
                    <groupId>com.taotaogroupId>
                    <artifactId>taotao-commonartifactId>
                    <version>1.0-SNAPSHOTversion>
                dependency>
            dependencies>


1.4 taotao-manager-pojo模块

这模块的pom不需要修改,taotao-manager-pojo模块不依赖任何jar包。

SSM项目---淘淘商城(IDEA开发)_第4张图片

1.5 taotao-manager-mapper模块

pom :


    <dependencies>
        <dependency>
            <groupId>com.taotaogroupId>
            <artifactId>taotao-manager-pojoartifactId>
            <version>1.0-SNAPSHOTversion>
        dependency>
        

        
        <
        -- 连接池 -->

    dependencies>


1.6 taotao-manager-service模块

pom :


        <dependencies>
            <dependency>
                <groupId>com.taotaogroupId>
                <artifactId>taotao-manager-mapperartifactId>
                <version>1.0-SNAPSHOTversion>
            dependency>

            


        dependencies>


1.6 taotao-manager-web模块


SSM项目---淘淘商城(IDEA开发)_第5张图片

pom

<packaging>warpackaging>

 <dependencies>

        <dependency>
            <groupId>com.taotaogroupId>
            <artifactId>taotao-manager-serviceartifactId>
            <version>1.0-SNAPSHOTversion>
        dependency>

        <dependency>
            <groupId>junitgroupId>
            <artifactId>junitartifactId>
            <version>3.8.1version>
            <scope>testscope>
        dependency>
        
        jstl,servlet,jsp

        
        <dependency>
            <groupId>commons-fileuploadgroupId>
            <artifactId>commons-fileuploadartifactId>
        dependency>

    dependencies>

更改web.xml


<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         id="taotao" version="2.5">
  <display-name>taotao-managerdisplay-name>
  <welcome-file-list>
    <welcome-file>index.htmlwelcome-file>
    <welcome-file>index.htmwelcome-file>
    <welcome-file>index.jspwelcome-file>
    <welcome-file>default.htmlwelcome-file>
    <welcome-file>default.htmwelcome-file>
    <welcome-file>default.jspwelcome-file>
  welcome-file-list>
web-app>

1.7在taotao-manager的pom下配置tomacat

<build>
        
        <plugins>
            <plugin>
                <groupId>org.apache.tomcat.mavengroupId>
                <artifactId>tomcat7-maven-pluginartifactId>
                <configuration>
                    <port>8080port>
                    <path>/path>
                configuration>
            plugin>
        plugins>
    build>

SSM项目---淘淘商城(IDEA开发)_第6张图片

先把taotao-common和taotao-parent安装到本地仓库中
SSM项目---淘淘商城(IDEA开发)_第7张图片


启动tocamt


成功运行:
SSM项目---淘淘商城(IDEA开发)_第8张图片



SVN可视化工具: (我用的github)

VisualSVN:http://www.visualsvn.com/server/download

安装时遇到端口443被占用时 :
SSM项目---淘淘商城(IDEA开发)_第9张图片

你可能感兴趣的:(SSM项目---淘淘商城(IDEA开发))