接口 MicroServiceExporterAgent

所有已知实现类:
MicroServiceExporterController

@RequestMapping("/jimmerMicroServiceBridge") public interface MicroServiceExporterAgent
  • 方法概要

    修饰符和类型
    方法
    说明
    List<org.babyfish.jimmer.sql.ast.tuple.Tuple2<Object,org.babyfish.jimmer.runtime.ImmutableSpi>>
    findByAssociatedIds(String prop, String targetIdsArrStr, String fetcherStr)
     
    List<org.babyfish.jimmer.runtime.ImmutableSpi>
    findByIds(String idArrStr, String fetcherStr)
     
  • 方法详细资料

    • findByIds

      @GetMapping("/byIds") List<org.babyfish.jimmer.runtime.ImmutableSpi> findByIds(@RequestParam("ids") String idArrStr, @RequestParam("fetcher") String fetcherStr) throws Exception
      抛出:
      Exception
    • findByAssociatedIds

      @GetMapping("/byAssociatedIds") List<org.babyfish.jimmer.sql.ast.tuple.Tuple2<Object,org.babyfish.jimmer.runtime.ImmutableSpi>> findByAssociatedIds(@RequestParam("prop") String prop, @RequestParam("targetIds") String targetIdsArrStr, @RequestParam("fetcher") String fetcherStr) throws Exception
      抛出:
      Exception