作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 kotlin spring boot 的新手,编写简单的 rest web 服务:
@SpringBootApplication
open class SpringKotlinWsApplication{
@GetMapping("/getUser")
fun getUser()= User("sample","sample")
}
fun main(args: Array<String>) {
runApplication<SpringKotlinWsApplication>(*args)
}
现在在我的电脑上配置本地 tomcat 服务器,并在运行项目时尝试使用此 url 访问它:
http://localhost:4040/getUser
得到这个错误:
HTTP Status 404 – Not Found
Type Status Report Message Not found Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
我该如何解决这个问题?
最佳答案
你忘记添加@RestController
注解
@RestController
@SpringBootApplication
open class SpringKotlinWsApplication{
@GetMapping("/getUser")
fun getUser() = User("sample","sample")
...
关于spring-boot - 无法访问本地主机上的 REST Controller (404),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56118905/
我是一名优秀的程序员,十分优秀!