是否可以在不重新调整 thymleaf 模型的情况下请求控制器
您好,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要返回数据,请使用
@RestController
而不是@Controller
。如果您只希望一个方法返回数据而不是整个控制器,您也可以使用
@ResponseBody
注释您的方法。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.