springboot專案多模組打包
阿新 • • 發佈:2021-01-12
Jar打包
jar打包有個好處,就是可以直接執行,執行該jar包,就可以直接訪問專案,並且進行連線。
具體步驟
1、在父級專案中加入這個依賴
<!--打包外掛 execute--> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <classifier>execute</classifier> </configuration> </plugin>
2、在命令列中:mvn clean package
3、打包成功會出現的提示
4、生成的jar
5、將包拷貝到本地目錄
6、連線測試
7、後臺資訊
中途會出現奇妙的問題
沒有主檔案清單屬性,這個就是上文的依賴包沒有匯入,沒有下面這句話也可能出現com.wt.pojo這種包不存在的問題。
<!--打包外掛 execute--> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <classifier>execute</classifier> </configuration> </plugin>