GithubHelp home page GithubHelp logo

landy8530 / designpatterns Goto Github PK

View Code? Open in Web Editor NEW
1.2K 1.2K 268.0 676 KB

经典设计模式讲解以及项目实战(Java版)

Home Page: https://segmentfault.com/u/landy8530

License: Apache License 2.0

Java 100.00%
design-patterns java spring

designpatterns's People

Contributors

landy8530 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

designpatterns's Issues

DefaultKeyIdentificationChain 中的index是否会有线程安全问题?

您好,最近我们团队在做一些与责任链相关的coding,拜读了您的源码,深受启发,感谢!

DefaultKeyIdentificationChain.java在匹配对应的KeyIdentification时:

   List<KeyIdentification> identifications = identifyMap.get(workflowId);
    if(identifyIndexMap.containsKey(workflowId)) {
        index = identifyIndexMap.get(workflowId) == null ? 0 : identifyIndexMap.get(workflowId);
    } else {
        index = 0;
    }

    if(index == identifications.size()) return IdentificationResultType.NO_MATCH;

    KeyIdentification keyIdentification = identifications.get(index);
    index ++;

    identifyIndexMap.put(workflowId,index);

    return keyIdentification.doIdentify(identifyCriterion,this);

当多个线程同时进行doIdentify()时,线程之间的index++是否会受到干扰?望指教!我们目前在这个地方使用ThreadLocal处理,是否有这个必要?

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.