- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的存储库:
@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/
我是一名优秀的程序员,十分优秀!