Code Monkey home page Code Monkey logo

idoc's Issues

插件配置generateFilter初始化失败,

先尝试自定义过滤器,使用失败,然后引入idoc-test包,使用提供的过滤器,同样初始化失败。

<dependencies>
        <dependency>
            <groupId>com.github.houbb</groupId>
            <artifactId>idoc-ftl</artifactId>
            <version>0.0.2</version>
        </dependency>

        <dependency>
            <groupId>com.github.houbb</groupId>
            <artifactId>idoc-api</artifactId>
            <version>0.0.2</version>
        </dependency>

        <dependency>
            <groupId>com.github.houbb</groupId>
            <artifactId>idoc-test</artifactId>
            <version>0.1.0</version>
        </dependency>

    </dependencies>
Generate doc execute meet ex: com.github.houbb.idoc.common.exception.IDocRuntimeException: java.lang.ClassNotFoundException: com.github.houbb.idoc.test.filter.MyGenerateFilter

若不配置generateFilter,可以运行

SimplifyMethodHandler的buildFieldDetails方法优化

private Map<String, List<SimplifyDocField>> buildFieldDetails(final List<SimplifyDocField> fields) {
    if (CollectionUtil.isEmpty(fields)) {
        return null;
    }
    final Map<String, List<SimplifyDocField>> map = new LinkedHashMap<>();
    for (SimplifyDocField docField : fields) {
        traversal(docField, map);
    }
    return map;
}
private void traversal(SimplifyDocField field, Map<String, List<SimplifyDocField>> map) {
    if (field.getEntries() == null) {
        return;
    }
    List<SimplifyDocField> entries = field.getEntries();
    map.put(field.getName(), entries);
    for (SimplifyDocField entry : entries) {
        traversal(entry, map);
    }
}

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.