Giter VIP home page Giter VIP logo

Comments (4)

zuihou avatar zuihou commented on June 1, 2024 1
  1. EchoController 调用 BaseOrgService 的方法
  2. 在 BaseOrgService 和 BaseOrgServiceImpl 新建 findByIds
  3. BaseOrgServiceImpl 中,将ids做一下类型转换
 @Override
    public Map<Serializable, Object> findByIds(Set<Serializable> ids) {
        return superManager.findByIds(ids.stream().map(Convert::toLong).collect(Collectors.toSet()));
    }

原因: feign 调用时,会将Set 中的泛型擦除,导致原本是Long类型的变成了String类型的。

所以,远程回显时,需要自己转一下类型。

from lamp-cloud.

zuihou avatar zuihou commented on June 1, 2024

意思是跨服务回显不行,本服务回显可以吗?

都是用的 OrgApi 吗?

from lamp-cloud.

pinkcao avatar pinkcao commented on June 1, 2024

是的,跨服务回显在redis原始为空的情况下会失败,插入cacheKey, null,本服务之间可以成功回显。
跨服务调用时是走的top.tangyh.lamp.common.api.OrgApi,从echoController调到了orgManager.findByIds(ids);
本服务调用时是直接调了baseOrgManagerImpl.findByIds(ids)

from lamp-cloud.

zuihou avatar zuihou commented on June 1, 2024

好,我试试

from lamp-cloud.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.