您好,登錄后才能下訂單哦!
這篇文章主要講解了“云服務(wù)器中怎么設(shè)置springboot啟動(dòng)端口”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“云服務(wù)器中怎么設(shè)置springboot啟動(dòng)端口”吧!
云服務(wù)器:spring boot是個(gè)好東西,可以不用容器直接在main方法中啟動(dòng),而且無(wú)需配置文件,方便快速搭建環(huán)境??墒钱?dāng)我們要同時(shí)啟動(dòng)2個(gè)springboot工程時(shí),就會(huì)有問題,有可能會(huì)因?yàn)?080端口被第一個(gè)應(yīng)用占用而導(dǎo)致第二個(gè)應(yīng)用無(wú)法啟動(dòng),這時(shí)就需要修改其中一個(gè)工程的啟動(dòng)端口。
可以通過實(shí)現(xiàn)EmbeddedServletContainerCustomizer接口來實(shí)現(xiàn):
public class Application extends SpringBootServletInitializer implements EmbeddedServletContainerCustomizer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
return builder.sources(Application.class);
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@Override
public void customize(ConfigurableEmbeddedServletContainer container) {
container.setPort(8081);
}
}
PS:下面看下spring boot創(chuàng)建應(yīng)用端口沖突8080
如果你電腦上的8080端口號(hào)被其它程序(如jenkins)占用了,則運(yùn)行l(wèi)ightsword會(huì)報(bào)以下錯(cuò)誤:java.net.BindException: Address already in use......Failed to start component [Connector[HTTP/1.1-8080]]...
解決方法:在src->main->resources目錄下新建一個(gè)文件,名稱為application.properties(這是SpringBoot統(tǒng)一的配置文件)加了以下一行內(nèi)容:(取個(gè)電腦上可用的端口號(hào),如下面的9527,看過星爺電影的都懂的)server.port = 9527
再次運(yùn)行即可。
感謝各位的閱讀,以上就是“云服務(wù)器中怎么設(shè)置springboot啟動(dòng)端口”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)云服務(wù)器中怎么設(shè)置springboot啟動(dòng)端口這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。