problem with classes not found during PlayPlugin.enhance
问题 I'm experimenting with a basic bytecode enhancement in a Play plugin, but when it tries to operate on the ApplicationClasses.ApplicationClass that it's given, the class can't be found. public void enhance(ApplicationClasses.ApplicationClass applicationClass) throws NotFoundException, IOException, CannotCompileException { ClassPool classPool = ClassPool.getDefault(); CtClass ctClass = classPool.get(applicationClass.name); ... } The exception is Oops: NotFoundException An unexpected error