SpringBoot项目修改访问端口和访问路径的方法
程序员文章站
2024-03-02 22:29:58
创建springboot项目,启动后,默认的访问路径即主机ip+默认端口号8080:http://localhost:8080/
此时,我们就可以访问controll...
创建springboot项目,启动后,默认的访问路径即主机ip+默认端口号8080:http://localhost:8080/
此时,我们就可以访问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."; } }
当然,我们可以通过配置来更改默认端口和项目访问路径:
修改端口号
使用properties文件方式:
在src/main/resoutces目录下创建:application.properties,添加如下配置即可修改端口号:
server.port=8088
使用yml文件方式:
在src/main/resoutces目录下创建:application.yml,添加如下配置即可修改端口号:
server: port:8088
修改项目访问路径
使用properties文件方式:
在application.properties,添加如下配置即可修改项目访问路径:
server.context-path=/springboot-demo
使用yml文件方式:
在application.yml,追加如下配置即可修改项目访问路径:
server: port:8088 context-path:/springboot-demo
此时,演示properties方式的效果,如下图:
server.port=8088 server.context-path=/springboot-demo
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: SpringBoot静态资源目录访问
下一篇: Android解析JSON数据的方法分析
推荐阅读