我有简单的休息库:
TestRepository extends MongoRepository<Test, String> {
@PreAuthorize("@helper.hasPermissionToProjection(#projection)")
@Override
Page<Test> findAll(Pageable pageable);
}
我需要的是将projection
param从链接api/tests?projection=full
传递到我的bean的hasPermissionToProjection
方法。
是否可以这样做?