我使用 mn create-app example.micronaut.complete 创建了一个新的 micronaut 应用程序
之后,我使用 intellij 打开了项目,并使用以下代码将一个新类作为 TestController 添加到项目中:
package example.micronaut;
import io.micronaut.http.MediaType;
import io.micronaut.http.annotation.Controller;
import io.micronaut.http.annotation.Get;
@Controller("/hello")
public class TestController {
TestController(){}
@Get(value = "/", produces = MediaType.TEXT_PLAIN)
String getTest(){
return "some string";
}
}
但我越来越
{"_links":{"self":{"href":"/","templated":false}},"message":"Page Not Found"}
每当我尝试访问 /hello 端点时
我的 application.yml 看起来像这样:
micronaut:
application:
name: complete
server:
port: 8080