创建springboot项目,启动后,默认的访问路径即主机ip+默认端口号8080:http://localhost:8080/
此时,我们就可以访问controller层的接口了,如:http://localhost:8080/hello
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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,添加如下配置即可修改端口号:
1
|
server.port= 8088
|
使用yml文件方式:
在src/main/resoutces目录下创建:application.yml,添加如下配置即可修改端口号:
1
2
|
server:
port: 8088
|
修改项目访问路径
使用properties文件方式:
在application.properties,添加如下配置即可修改项目访问路径:
1
|
server.context-path=/springboot-demo
|
使用yml文件方式:
在application.yml,追加如下配置即可修改项目访问路径:
1
2
3
|
server:
port: 8088
context-path:/springboot-demo
|
此时,演示properties方式的效果,如下图:
1
2
|
server.port= 8088
server.context-path=/springboot-demo
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_40087415/article/details/82497668