創(chuàng)建SpringBoot項(xiàng)目,啟動(dòng)后,默認(rèn)的訪問路徑即主機(jī)IP+默認(rèn)端口號(hào)8080:http://localhost:8080/
創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)、殷都網(wǎng)絡(luò)推廣、微信小程序開發(fā)、殷都網(wǎng)絡(luò)營(yíng)銷、殷都企業(yè)策劃、殷都品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供殷都建站搭建服務(wù),24小時(shí)服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
此時(shí),我們就可以訪問Controller層的接口了,如:http://localhost:8080/hello
package com.springboot.test; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class SpringBootTest { @RequestMapping("/hello") public String helloSpringBoot() { return "Hello SpringBoot Project."; } }
當(dāng)然,我們可以通過配置來更改默認(rèn)端口和項(xiàng)目訪問路徑:
修改端口號(hào)
使用properties文件方式:
在src/main/resoutces目錄下創(chuàng)建:application.properties,添加如下配置即可修改端口號(hào):
server.port=8088
使用yml文件方式:
在src/main/resoutces目錄下創(chuàng)建:application.yml,添加如下配置即可修改端口號(hào):
server: port:8088
修改項(xiàng)目訪問路徑
使用properties文件方式:
在application.properties,添加如下配置即可修改項(xiàng)目訪問路徑:
server.context-path=/springboot-demo
使用yml文件方式:
在application.yml,追加如下配置即可修改項(xiàng)目訪問路徑:
server: port:8088 context-path:/springboot-demo
此時(shí),演示properties方式的效果,如下圖:
server.port=8088 server.context-path=/springboot-demo
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。