# SpringbootTest **Repository Path**: AndyWu93/springboot-test ## Basic Information - **Project Name**: SpringbootTest - **Description**: No description available - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-19 - **Last Updated**: 2021-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目启动 - run文件 - 命令行 ```shell script mvn spring-boot:run # 在项目目录 ``` - 打包运行(在正式环境) ```shell script # step 1 打包 mvn clean package # run java -jar target/luckymoney-0.0.1-SNAPSHOT.jar # 生产环境 java -jar -Dspring.profiles.active=prod target/luckymoney-0.0.1-SNAPSHOT.jar ```