我尝试使用kotlin在Spring Boot中创建简单的Hello World应用程序,但是IntelliJ IDE向我警告说,永远不要使用我的控制器类,并且指定的端点也不起作用。我不知道该怎么办。
我使用Boot Initializr创建了应用,其结构如下:
kotlin/
com.myapp.school/
Application.kt
controller/
HelloController.kt
resources/
static/
templates/
hello.html
这是Application.kt的代码:
package com.myapp.school
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
@SpringBootApplication
class Application
fun main(args: Array<String>) {
runApplication<Application>(*args)
}
最后,我有一个具有一种方法的简单控制器:
package com.myapp.school.controller
import org.springframework.stereotype.Controller
import org.springframework.ui.Model
import org.springframework.web.bind.annotation.GetMapping
@Controller
class HelloController
@GetMapping("/hello")
fun hello(): String {
System.out.println("Hello from controller")
return "hello"
}
转到localhost:8080 / hello将显示带有404状态的whitelabel错误页面。我读到Spring在启动时将注册的端点打印到控制台中,但是我没有找到这样的消息。
有人可以告诉我怎么了吗? 谢谢
答案 0 :(得分:2)
我认为您的问题是您有一个没有主体的顶级类(HelloController
)和一个顶级函数(hello
)。您必须大括号以确保hello
是HelloController
的成员。
你有这个:
@Controller
class HelloController
@GetMapping("/hello")
fun hello(): String {
System.out.println("Hello from controller")
return "hello"
}
必须是这样,所以hello
属于HelloController
,而不是同一级别:
@Controller
class HelloController {
@GetMapping("/hello")
fun hello(): String {
System.out.println("Hello from controller")
return "hello"
}
}
另外,将System.out.println
更改为println
,使其更像Kotlin。