美文网首页
java && maven

java && maven

作者: 斜月86 | 来源:发表于2018-10-23 11:31 被阅读0次

    maven打包install

    mvn -U clean install --settings D:\server\apache-maven-3.5.4\conf\settings.xml -Dmaven.test.skip=true -Dmaven.repo.local=D:\localrepository

    mvn clean package依次执行了clean、resources、compile、testResources、testCompile、test、jar(打包)等7个阶段。
    mvn clean install依次执行了clean、resources、compile、testResources、testCompile、test、jar(打包)、install等8个阶段。

    mvn clean deploy依次执行了clean、resources、compile、testResources、testCompile、test、jar(打包)、install、deploy等9个阶段。

    由上面的分析可知主要区别如下,
    package命令完成了项目编译、单元测试、打包功能,但没有把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库和远程maven私服仓库
    install命令完成了项目编译、单元测试、打包功能,同时把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库,但没有布署到远程maven私服仓库
    deploy命令完成了项目编译、单元测试、打包功能,同时把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库和远程maven私服仓库

    -javaagent:C:\Program Files\JetBrains\WebStorm 2018.2.4\bin\JetbrainsCrack-3.1-release-enc.jar

    查看windows 是否激活
    slmgr.vbs -xpr

    项目
    https://gitee.com/wanglingxiao/mysiteforme

    时间戳统一转换
    方法一:
    spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
    spring.jackson.time-zone=GMT+8

    方法二:

    @JsonFormat(timezone = "GMT+8", pattern = "yyyyMMddHHmmss")
    private Date createTime;

    驼峰下划线相互转换
    System.out.println(CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, "userName")); System.out.println(CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "user_name"));

    清理server 磁盘

    df -l
    du -h --max-depth=1

    yum install -y rzsz

    相关文章

      网友评论

          本文标题:java && maven

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