spring boot打包问题,访问问题
用eclipse 打jar包 或者war 會報錯(換maven-surefire-plugin: 其他版本一樣報錯?) ?總結(jié)所有的可能性
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.3:test (default-test) on project jxBoot: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.3:test failed: Plugin org.apache.maven.plugins:maven-surefire-plugin:2.3 or one of its dependencies could not be resolved: Failed to collect dependencies at org.apache.maven.plugins:maven-surefire-plugin:jar:2.3 -> org.apache.maven.surefire:surefire-booter:jar:2.3: Failed to read artifact descriptor for org.apache.maven.surefire:surefire-booter:jar:2.3: Could not transfer artifact org.apache.maven.surefire:surefire-booter:pom:2.3 from/to central (https://repo.maven.apache.org/maven2): RSA premaster secret error: SunTls12RsaPremasterSecret KeyGenerator not available -> [Help 1]
網(wǎng)上找了很久沒解決 ,最后還是無意中用命令解決了
有的說 缺少包
1
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>1.8.12</version> </plugin> 2
<plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins>
有的說是要跳過測試,勾選eclipse 這個選項
有的說 用代碼跳過測試
http://blog.csdn.net/caiwenfeng_for_23/article/details/44514947
有的說這個
http://blog.csdn.net/chen_jp/article/details/8524913
可能你的問題屬于以上的, ?如果沒有解決請看我的問題解決辦法: ?直接用自己配置的maven 用cmd命令打包 放棄使用eclipse工具,可能是eclipse 的內(nèi)部問題吧,具體我也不清楚為什么,使用命令打包成功,(成功之后,奇怪的是回過頭來 再用eclipse打包結(jié)果也成功了 ? ?暈!!)
打包成功部署訪問
啟動項目 java -jar *****.jar ?(注意路徑)
啟動項目 java -jar *****.war ?(注意路徑)( 這種方式可以解決,jar 無法訪問jsp頁面的問題jsp支持要加 其五的代碼段 )
在項目的target文件夾下找到自己的 jar (或者war ,一般spring boot 打的是jar包)?
這里我的包名叫 jxboot.jar 訪問時和直接在eclipse 上運行的訪問是不一樣的
http://localhost:8888/home (eclipse 上 home 方法 )
http://localhost:8888/jxboot/home (jxboot.jar 部署后訪問 home方法)
這些小細節(jié)真的有時候能搞很久,時間寶貴但愿能給正在苦苦尋找方法的小伙伴節(jié)約點時間
總結(jié)
以上是生活随笔為你收集整理的spring boot打包问题,访问问题的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【深度学习】使用深度学习阅读和分类扫描文
- 下一篇: 【Python】Python中的经典时