gpt4 book ai didi

java - 将自定义方法添加到 Spring RepositoryRestResource

转载 作者:行者123 更新时间:2023-12-01 19:23:31 26 4
gpt4 key购买 nike

是否可以将自定义方法添加到 Spring @RepositoryRestResource 并将它们公开为 HTTP 端点,如下面的示例尝试(但失败)那样?或者我必须将自定义方法放在单独的 @Controller 中吗?

@RepositoryRestResource(path="person")
public interface PersonRepository extends CrudRepository<Person,Long> {

// This works, as it's an integral part of what RepositoryRestResource does:
// curl localhost:8080/person/search/findByNameStartsWith?prefix=MA
Iterable<Person> findByNameStartsWith(@Param("prefix") String prefix);

// This doesn't work:
// curl -X POST -v localhost:8080/person/3/sendWelcomeLetter
@RequestMapping(path = "/{id}/sendWelcomeLetter", method = RequestMethod.POST)
default String sendWelcomeLetter(@PathVariable("id") Long id) {
return "This is a custom method that would generate and send a letter.";
}
}

最佳答案

sendWelcomeLetter 不是 ReST。 ReST中的ST意思是“状态转移”,你的调用是动态的,没有状态转移。

一个最小的解决方案可能是添加一个新的可为空的列“sent_welcome_newsletter”。

  • null 表示欢迎新闻通讯尚未发送。
  • false 表示无法发送欢迎简讯(收件箱已满或电子邮件无效)。
  • true 表示欢迎简讯过去已成功发送。

但是:请注意 legal right不被 DNSBL 阻止。如果不尊重这一标准,您的公司将陷入巨大的法律问题,并可能导致您失业!!!!

关于java - 将自定义方法添加到 Spring RepositoryRestResource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59332584/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com