其他分享
首页 > 其他分享> > 跟着黑马学SSM——Day9之Maven高级

跟着黑马学SSM——Day9之Maven高级

作者:互联网

Maven进阶

分模块开发的与设计

分模块开发意义

步骤

  1. 创建Maven模块

  2. 书写模块代码

    • 分模块开发需要先针对模块功能进行设计,在进行编码。不会先将工程开发完毕,然后进行拆分
  3. 通过maven指令安装模块到本地仓库(install指令)

    • 团队内部开发需要发布模块功能到团队内部可共享的仓库中(私服)

依赖管理

依赖管理

依赖传递

可选依赖和排除依赖

可选依赖

排除依赖

继承与聚合

聚合

步骤

  1. 创建Maven模块,设置打包类型为pom

    <packaging>pom</packaging>
    

    注意事项:每个maven工程都有对应的打包方式,默认为jar,web工程的打包方式为war

  2. 设置当前聚合工程所包含的子模块名称

    <modules>
        <module>../maven_02_ssm</module>
        <module>../maven_03_pojo</module>
    </modules>
    

    注意事项:

    聚合工程中所包含的模块在进行构建时会根据模块间的依赖关系设置构建顺序,与聚合工程中模块的配置书写位置无关

    参与聚合的工程无法向上感知是否参与聚合,只能向下配置哪些模块参与本工程的聚合

继承

步骤

  1. 创建Maven模块,设置打包类型为pom

    <packaging>pom</packaging>
    

    建议父工程打包方式设置为pom

  2. 在父工程的pom文件中配置依赖关系(子工程将延用父工程中的依赖关系)

    <dependencies>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>5.3.12</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>5.3.12</version>
      </dependency>
      。。。
    </dependencies>
    
  3. 配置子工程可以选择的依赖关系

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.13.2</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    
  4. 在子工程中配置当前工程所继承的父工程

    <parent>
        <groupId>com.xhj</groupId>
        <artifactId>maven_01_parent</artifactId>
        <version>1.0-SNAPSHOT</version>
        <!--定位,不写也可以-->
        <relativePath>../maven_01_parent/pom.xml</relativePath>
    </parent>
    
  5. 在子工程配置使用父工程中可选依赖的坐标

    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
    </dependency>
    

    注意事项

    • 子工程中使用父工程中的可选依赖时,仅需要提供群组id和项目id,无需提供版本,版本由父工程统一提供,避免版本冲突
    • 子工程还可以定义父工程中没有定义的依赖关系

聚合与继承的区别

属性

  1. 定义属性

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    
        <spting.version>5.3.12</spting.version>
    
    </properties>
    
  2. 引用属性

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>${spting.version}</version>
    </dependency>
    

资源文件引用属性

  1. 定义属性

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        
        <spting.version>5.3.12</spting.version>
    
        <jdbc.url>jdbc:mysql://127.0.0.1:3305/ssm_bd</jdbc.url>
    </properties>
    
  2. 配置文件中引用属性

    jdbc.driver=com.mysql.cj.jdbc.Driver
    jdbc.url=${jdbc.url}
    jdbc.username=****
    jdbc.password=*****
    
  3. 开启资源文件目录加载的过滤器

    <build>
        <resources>
            <resource>
                <directory>${project.basedir}/src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>
    
  4. 配置maven打war包时,忽略web.xml检查

    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>3.2.2</version>
            <configuration>
                <failOnMissingWebXml>false</failOnMissingWebXml>
            </configuration>
        </plugin>
    </plugins>
    

其他属性(了解)

版本管理

多环境配置与应用

多环境开发

  1. 定义多环境

    <!--配置多环境-->
    <profiles>
        <!--开发环境-->
        <profile>
            <id>env_dep</id>
            <properties>
                <jdbc.url>jdbc:mysql://127.1.1.1:3305/ssm_bd</jdbc.url>            </properties>
        </profile>
        <!--生产环境-->
        <profile>
            <id>env_pro</id>
            <properties>
                <jdbc.url>jdbc:mysql://127.2.2.1:3305/ssm_bd</jdbc.url>            </properties>
        </profile>
        <!--测试环境-->
        <profile>
            <id>env_test</id>
            <properties>
                <jdbc.url>jdbc:mysql://127.3.3.1:3305/ssm_bd</jdbc.url>            </properties>
        </profile>
    </profiles>
    
  2. 使用多环境(构建过程)

跳过测试

私服

团队开发现状分析

私服简介

标签:SSM,依赖,聚合,工程,Day9,配置,Maven,模块,maven
来源: https://www.cnblogs.com/ltom/p/16684179.html