使用@RestController 没有用

mac2024-03-10  27

新建项目,加入@RestController 但页面提示 Whitelabel Error Page

这是会报错的结构

这是修改后的目录结构,这样就能扫描到了

这是加入注解的代码

package com.tww.study.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping("/") public String index(){ return "hello world"; } }

访问地址 http://localhost:8080/,就打印出hello world了 hello world

最新回复(0)