spring-boot-plus project package (seven)

spring-boot-plus project package

Project Package

  • spring-boot-plus project using maven assembly plugin for packing
  • Packaged deployment depending on the environment
  • Contains the boot, reboot command, the configuration file is extracted to an external config directory

Package command
shell script mvn clean package -Plocal

cd target
  • After the package archive project
spring-boot-plus-1.0.0.RELEASE-local.tar.gz
spring-boot-plus-1.0.0.RELEASE-local.zip
  • Profile location
spring-boot-plus-1.0.0.RELEASE-local\spring-boot-plus\config
  • After the package directory project
├─spring-boot-plus-1.0.0.RELEASE-local
│  └─spring-boot-plus
│      ├─bin
│      ├─config
│      ├─lib
│      └─logs
│          └─back
  • Detailed directories and files of the project package
spring-boot-plus-1.0.0.RELEASE-local
    └─spring-boot-plus
        │  CHANGELOG.md
        │  LICENSE
        │  README.md
        │
        ├─bin
        │      restart.sh
        │      shutdown.sh
        │      startup.bat
        │      startup.sh
        │
        ├─config
        │      application-local.yml
        │      application.yml
        │      banner.txt
        │      logback.xml
        │
        ├─lib
        │      spring-boot-plus.jar
        │
        └─logs
            │  spring-boot-plus-startup.log
            │  spring-boot-plus.log
            │
            └─back
                    spring-boot-plus-back.log

Guess you like

Origin www.cnblogs.com/springbootplus/p/11334653.html