美文网首页
项目模块化

项目模块化

作者: Mcq | 来源:发表于2021-01-28 21:39 被阅读0次

    1.更改maven编译版本,mevan 项目默认使用1.5版本进行编译,
    找到maven配置文件settins.xml,在ideal安装目录中插件maven中,或maven安装目录中,



    2.修改编译相关配置,jdk版本,maven编译版本

     <profile>
          <id>jdk-1.8</id>
    
          <activation>
            <jdk>1.8</jdk>
          </activation>
         <properties>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
            <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
         </properties>
          <!-- <repositories>
            <repository>
              <id>jdk14</id>
              <name>Repository for JDK 1.4 builds</name>
              <url>http://www.myhost.com/maven/jdk14</url>
              <layout>default</layout>
              <snapshotPolicy>always</snapshotPolicy>
            </repository>
          </repositories> -->
        </profile>
    

    3.删掉剩下pom.xml和src


    image.png

    4.更改pom.xml中的项目名,在原名后加上web即可,更改项目文件名称后加上-web

    5.拆分模块


    之前web项目中的parent抽到顶层pom.xml中,各模块分别自上而下继承。
    然后将各自依赖,放到合适的模块中。注意模块之间是否关联正确。

    还有一点,mysql依赖需要在编译阶段引用,需要放到使用到的模块中。

    相关文章

      网友评论

          本文标题:项目模块化

          本文链接:https://www.haomeiwen.com/subject/ppnizktx.html