【发布时间】:2018-11-30 22:59:06
【问题描述】:
我在实体之间建立了简单的关系:
class Product {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
private String name;
private double calories;
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn
private Category category;
}
class Category {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(unique = true)
private String name;
Category(String name) {
this.name = name;
}
}
我正在使用以下存储库
interface ProductRepository extends Repository<Product, Long> {
Product save(Product product);
Page<Product> findAll(Pageable pageable);
Page<Product> findByCategory(Pageable pageable, Category category);
void delete(Product product);
}
像这样在facade中调用
public Page<ProductDTO> getProductsByCategory(Pageable pageable, String categoryName) {
return productRepository.findByCategory(pageable, dtoConverter.toCategory(categoryName))
.map(Product::toDTO);
}
在dtoConverter
Category toCategory(String categoryName) {
return new Category(categoryName);
}
最终将我们引向Controller
@GetMapping("/findCategory")
Page<ProductDTO> getProductsByCategory(Pageable pageable, @RequestParam String categoryName) {
return productFacade.getProductsByCategory(pageable, categoryName);
}
我有非常相似的方法来获取和创建新产品,它很有效,但是一旦我尝试按照上面描述的方式按类别查找产品,我就得到了
{
"timestamp": "2018-11-30T22:57:29.660+0000",
"status": 404,
"error": "Not Found",
"message": "No message available",
"path": "/products/findCategory=fruit"
}
即使我确定有此类产品存储在 db 中(我发现它们直接查看 mysql 并使用 findAll 端点)。谁能解释一下这里出了什么问题?
【问题讨论】:
标签: java mysql spring spring-data