1、编译.java文件(target目录下生成class文件):
mvn compile
2、编译测试代码:
mvn test -compile
3、运行测试:
mvn test
4、打包(target目录下生成jar文件)
mvn package
5、在本地仓库中生成jar(.m2/repository/)
mvn install
6、清理操作(清除target整个目录,对本地仓库的jar无影响)
mvn clean
7、mvn install = mvn compile + mvn package + 上传到本地仓库
8、mvn deploy = mvn install + 上传到私服
9、生成site
mvn site
10、使用IntellJ IDEA可以方便得进行maven生命周期的操作(双击即可运行相应命令):
11、If you are using Maven, you can run the application using./mvnw spring-boot:run
. Or you can build the JAR file with ./mvnw clean package
. Then you can run the JAR file:
java -jar target/gs-accessing-data-mysql-0.1.0.jar