文章分类 其他 spring springboot java intellij-idea ide 阅读数 : 364 阅读时长 : 3分钟
在项目配置文件application.properties中写入
#启动端口
server.port=8088
创建控制类文件夹–>便于规范我们新建一个controller包–>建一个HelloWorld.class
package com.example.hellospringboot.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@ResponseBody
@RequestMapping("/hey")
public class HelloWorld {
@RequestMapping("/heyWorld")
public String heyWorld(){
return "Hello World";
}
}
运行启动类
打开浏览器输入http://localhost:8088/hey/heyWorld
回车如下
更多【spring-idea中搭建Spring boot项目(借助Spring Initializer)】相关视频教程:www.yxfzedu.com