JCR(Jackrrabit)中如何获取RepositoryService?

How to obtain the RepositoryService in JCR (Jackrrabit)?

我想在 JCR (Jackrabit) 中执行一些批处理操作,我需要使用 org.apache.jackrabbit.spi.Batch (docs),为此我需要 RepositoryService 但我不知道如何获得 RepositoryService.

RepositoryService 是一个低级接口,由 Jackrabbit SPI 接口使用。

通常,您在 JCR 中通过执行多个操作然后调用 Session.save() 来执行批处理操作。