标签:tps lib 成功 group htm dea jar 17. work
1. 打开终端 termial , 使用 mvn install .
如果提示 mvn 不是xx 命令 ;
2 则需要配置环境变量 : path : C:\Program Files\JetBrains\IntelliJ IDEA 2017.3.5\plugins\maven\lib\maven3\bin;
3. 然后执行 java -jar target\ xxx.jar 。 即可成功
4.通过ftp 上传 xxx.jar 到 unbutn上,也可执行成功.运行成功
5.之前通过 aritfact 虽然可以生成 .jar 包,但是总是提示找不到 main class 。不知道原因
比较重要的生成打包插件
<build> <finalName>ServiceCenter</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
参考博客: https://blog.csdn.net/yanlingzhang80/article/details/79517007
使用 IDEA 打包spring cloud 成 jar在ubuntu 中运行
标签:tps lib 成功 group htm dea jar 17. work
原文地址:https://www.cnblogs.com/bkyrslf/p/9678531.html