是否可以在不重新调整 thymleaf 模型的情况下请求控制器

发布于 2025-01-15 14:51:48 字数 453 浏览 1 评论 0原文

您好,我使用 Thymealf,并希望在提交之前对我的数据库进行验证。 当我调用控制器时,我收到错误:

Error resolving template [], template might not exist or might not be accessible by any of the configured Template Resolvers

我认为错误来自于我没有返回模态。 有没有办法在没有 thymleaf 的情况下提出请求?

控制器

@GetMapping("/getByKey/{key}")
public KeyValuePair keyExists(@PathVariable("key") String key){
    return ssdbService.getByKey(key);
}

还是我理解这里完全错误?

Hello I use Thymealf and want to do a validirung against my database before I subbmitte.
When I call the controller I get the error:

Error resolving template [], template might not exist or might not be accessible by any of the configured Template Resolvers

I think the error comes from the fact that I don't returne a modal.
Is there a way to make a request without thymleaf ?

Controller

@GetMapping("/getByKey/{key}")
public KeyValuePair keyExists(@PathVariable("key") String key){
    return ssdbService.getByKey(key);
}

or do I understand here something completely wrong ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半步萧音过轻尘 2025-01-22 14:51:48

如果要返回数据,请使用 @RestController 而不是 @Controller

如果您只希望一个方法返回数据而不是整个控制器,您也可以使用 @ResponseBody 注释您的方法。

@ResponseBody
@GetMapping("/getByKey/{key}")
public KeyValuePair keyExists(@PathVariable("key") String key){
    return ssdbService.getByKey(key);
}

Use a @RestController instead of a @Controller if you want to return data.

You can also just annotate your method with @ResponseBody if you just want one method to return data instead of the entire controller.

@ResponseBody
@GetMapping("/getByKey/{key}")
public KeyValuePair keyExists(@PathVariable("key") String key){
    return ssdbService.getByKey(key);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文