zoukankan      html  css  js  c++  java
  • 利用jdt快速实现pmd的功能

    jdt可以做语法树分析,并且支持visitor模式对代码进行分析。跟pmd的分析方式一样,我们只要实现 visitor接口即可实现一个插件。

    @Service("requestMappingInfoService")
    public class RequestMappingInfoServiceImpl implements RequestMappingInfoService {


    int c = 0;

    private static OkHttpClient httpClient = new OkHttpClient();
    private static GitlabAPI gla = GitlabAPI.connect("https://git.xxx.com", "mytoken");
    private static ASTParser parser = ASTParser.newParser(AST.JLS8); //设置Java语言规范版本

    static {
    parser.setKind(ASTParser.K_COMPILATION_UNIT);
    parser.setCompilerOptions(null);
    parser.setResolveBindings(true);

    Map<String, String> compilerOptions = JavaCore.getOptions();
    //设置Java语言版本
    compilerOptions.put(JavaCore.COMPILER_COMPLIANCE, JavaCore.VERSION_1_8);
    compilerOptions.put(JavaCore.COMPILER_CODEGEN_TARGET_PLATFORM, JavaCore.VERSION_1_8);
    compilerOptions.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_8);
    //设置编译选项
    parser.setCompilerOptions(compilerOptions);

    }

    private void jdtPrase(byte[] fileContent, String giturl) {

    parser.setSource(new String(fileContent).toCharArray());

    //下个断点可以看看cu的types成员就是整个语法树
    CompilationUnit cu = (CompilationUnit) parser.createAST(null);

    //RequestMappingVisitor是个ASTVisitor的实现类 ,相当于一个插件
            RequestMappingVisitor requestMappingVisitor = new RequestMappingVisitor();
    cu.accept(requestMappingVisitor); //利用这个插件visit所有的语法树节点

    }
    }
  • 相关阅读:
    IDEA常用快捷键
    IDEA的使用
    IDEA的常用设置
    IDEA的下载安装
    004-解决多线程安全问题
    002-多线程的创建
    Java中字符串与日期之间的转换
    select标签的字体居中问题
    IntelliJ IDEA常用快捷键
    div小技巧之子元素垂直居中
  • 原文地址:https://www.cnblogs.com/fsqsec/p/8607561.html
Copyright © 2011-2022 走看看