小编Man*_*ish的帖子

有没有办法在不使用Spring-MVC的情况下使用spring-data-rest写一个rest控制器来上传文件?

我创建了像给定代码一样的存储库

@RepositoryRestResource(collectionResourceRel = "sample", path = "/sample" )
public interface SampleRepository extends PagingAndSortingRepository<Sample, Long> {

}
Run Code Online (Sandbox Code Playgroud)

适用于allcrud操作.

但我想创建一个上传文件的休息库,如何用spring-data-rest做到这一点?

java spring spring-data-rest

9
推荐指数
1
解决办法
2万
查看次数

标签 统计

java ×1

spring ×1

spring-data-rest ×1