gpt4 book ai didi

java - 尝试通过rest访问jpa数据时获取 "No mapping found for HTTP request with URI [/system/people]..."

转载 作者:行者123 更新时间:2023-12-01 11:32:41 25 4
gpt4 key购买 nike

这是我的存储库:

@RepositoryRestResource(collectionResourceRel = "people", path = "people")
public interface PersonRepo extends PagingAndSortingRepository<Person, Long> {
List<Person> findByName(@Param("name") String name);
}

http://localhost:8080/system/people是我要访问的内容,其中“http://localhost:8080/system ”是 spring MVC 项目的基本 url

最佳答案

根据 http://docs.spring.io/spring-data/rest/docs/2.3.0.RELEASE/reference/html/#getting-started.introduction 我已经找到了解决方案,我添加了一个用于数据访问配置的类:

@配置
公共(public)类CustomizedRestMvcConfiguration扩展RepositoryRestMvcConfiguration {
@覆盖
公共(public) RepositoryRestConfiguration config() {
RepositoryRestConfiguration config = super.config();
config.setBasePath("/api");
返回配置;
}
}

此外,我还在我的 Spring 应用程序配置类中添加了 @Import(CustomizedRestMvcConfiguration.class) 。现在每当我执行 http://localhost:8080/system/api/people调用,可以检索数据库条目。

关于java - 尝试通过rest访问jpa数据时获取 "No mapping found for HTTP request with URI [/system/people]...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30283492/

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