Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HelloController需要定义在一个包中。如果您完全按照指南进行操作,请尝试以下操作,
HelloController
package example.helloworld; import io.micronaut.http.annotation.*; @Controller("/hello") public class HelloController { @Get public String index() { return "Hello World"; } }