//只处理最顶层的类
NestingKind nestingKind = ((TypeElement) element).getNestingKind();
if (nestingKind != NestingKind.TOP_LEVEL)
continue;
Controller controller = element.getAnnotation(Controller.class);
if (controller == null)
continue;
varCount = 1; //在开发阶段,如果不断更改源文件,会不断重新编译,这个值如果不清零,会一直加