欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot的helloworld页面一直404的问题

程序员文章站 2022-06-13 21:20:47
...

springboot的helloworld页面一直404的问题

之前在网上百度到的例子一直成功不了,后来问了个大佬,改动了两个地方就好了。

项目创建部分 springboot的helloworld页面一直404的问题网上说只要选这个就好了,不过我改了之后才成功的springboot的helloworld页面一直404的问题

改动的代码部分

package hello.template.controller;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class helloworld {
    @RequestMapping("/hello/world")
    public String helloworld(){
        return "Hello world";
    }
}