- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个 View 绑定(bind)器,它使用 KotlinPoet 为我的 View 生成一些样板代码。但不知何故,我的注释处理器没有生成 View 所需的代码,因此每当我尝试运行演示应用程序时都会抛出 ClassNotFoundException
。
这是我的处理器
@AutoService(Processor::class)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedOptions(KAPT_KOTLIN_GENERATED)
class Processor : AbstractProcessor() {
private lateinit var helper: ProcessorHelper
override fun getSupportedSourceVersion(): SourceVersion {
return SourceVersion.latest()
}
override fun process(annotations: MutableSet<out TypeElement>, roundEnv: RoundEnvironment): Boolean {
// if (!roundEnv.processingOver()) {
//Find all the classes that uses annotations
val typeElements: Set<TypeElement> =
ProcessingUtils.getTypeElementsToProcess(roundEnv.rootElements, annotations)
//Create a wrapper for each such class
for (typeElement in typeElements){
this.helper = ProcessorHelper()
val typeName : String = typeElement.simpleName.toString()
val packageName : String = processingEnv.elementUtils.getPackageOf(typeElement).qualifiedName.toString()
//Use the package name and the type name to form a class name
val className = ClassName(packageName, typeName)
//Get the generated class name
val generatedClassName = ClassName(packageName, NameSpaceStore.getGeneratedClassName(typeName))
//Define the wrapper class
val classBuilder = TypeSpec.classBuilder(generatedClassName)
.addModifiers(KModifier.PUBLIC)
.addAnnotation(Keep::class.java)
//Add Constructor
classBuilder.addFunction(FunSpec.constructorBuilder()
.addModifiers(KModifier.PUBLIC)
.addParameter( NameSpaceStore.Variable.ANDROID_ACTIVITY, className)
.addStatement("%N(%N)", NameSpaceStore.Method.BIND_ONCLICKS,
NameSpaceStore.Variable.ANDROID_ACTIVITY)
.addStatement("%N(%N)", NameSpaceStore.Method.BIND_ONCLICKS,
NameSpaceStore.Variable.ANDROID_ACTIVITY)
.build())
//Add method that map the with with the ID
val bindViewMethodBuilder = helper.with(className).
privateFunctionBuilder(NameSpaceStore.Method.BIND_VIEWS,NameSpaceStore.Variable.ANDROID_ACTIVITY)
for (variableElement in ElementFilter.fieldsIn(typeElement.enclosedElements)){
val bindView = variableElement.getAnnotation(BindView::class.java)
if (null != bindView){
//Start finding every views
bindViewMethodBuilder.addStatement("%N.%N = (%T)%N.findViewById(%L)",
NameSpaceStore.Variable.ANDROID_ACTIVITY,
variableElement.simpleName.toString(),
variableElement,
NameSpaceStore.Variable.ANDROID_ACTIVITY,
bindView.value
)
}
}
//Finally build methods
classBuilder.addFunction(bindViewMethodBuilder.build())
//Add method that attaches onClickListener()
val androidClickClassName = ClassName(NameSpaceStore.Package.ANDROID_VIEW,
NameSpaceStore.Class.ANDROID_VIEW,
NameSpaceStore.Class.ANDROID_VIEW_ONCLICK_LISTENER)
//Map to Android view class name
val androidViewClassName = ClassName(NameSpaceStore.Package.ANDROID_VIEW,
NameSpaceStore.Class.ANDROID_VIEW)
val bindOnClickMethodBuilder = helper.with(className).privateFunctionBuilder(NameSpaceStore.Method.BIND_ONCLICKS,
NameSpaceStore.Variable.ANDROID_ACTIVITY/*, Modifier.FINAL*/)
for (executableElement in ElementFilter.methodsIn(typeElement.enclosedElements)){
val onClick = executableElement.getAnnotation(OnClick::class.java)
if (onClick !=null){
val onClickListenerClass = TypeSpec.anonymousClassBuilder()
.addSuperinterface(androidClickClassName)
.addFunction(
helper.with(androidViewClassName).publicFunctionBuilder(NameSpaceStore.Method.ANDROID_VIEW_ONCLICK,
NameSpaceStore.Variable.ANDROID_VIEW)
.addStatement("%N.%N(%N)", NameSpaceStore.Variable.ANDROID_ACTIVITY,
executableElement.simpleName.toString(),
NameSpaceStore.Variable.ANDROID_VIEW)
.returns(Void::class.java)
.build())
bindOnClickMethodBuilder.addStatement("%N.findViewById(%L).setOnClickListener(%L)",
NameSpaceStore.Variable.ANDROID_ACTIVITY, onClick.id, onClickListenerClass)
}
}
classBuilder.addFunction(bindOnClickMethodBuilder.build())
//Write the define file to java file
val file = File(KAPT_KOTLIN_GENERATED)
try{
FileSpec.builder(packageName, generatedClassName::class.java.name)
.addType(classBuilder.build())
.build()
.writeTo(System.out)
}catch (io : IOException){
processingEnv.messager.printMessage(Diagnostic.Kind.ERROR, io.toString(), typeElement)
}
// }
}
return true
}
override fun getSupportedAnnotationTypes(): MutableSet<String?> {
return mutableSetOf(BindView::class.java.name,
Keep::class.java.name, OnClick::class.java.name)
}
}
如果您需要有关此问题的更多信息,请告诉我。提前致谢。
最佳答案
我遇到了同样的问题。每次我运行构建时,都没有生成任何东西。我发现问题出在我的注释处理器模块的 build.gradle 文件上。
因此,如果您有注释处理器模块,请确保检查这些:
注解处理器模块build.gradle
apply plugin: 'java-library'
apply plugin: 'kotlin'//make sure you add this line
apply plugin: 'kotlin-kapt'//make sure you add this line
sourceCompatibility = 1.8//version must be 8 in all modules
targetCompatibility = 1.8//version must be 8 in all modules
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//use kotlin-stdlib-jdk8 (instead of ...-jdk7)
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
//make sure you include annotation
implementation project(':annotations')
//libraries needed to process the annotated elements
implementation 'com.squareup:kotlinpoet:1.0.0'//if you are using kotlinpoet
implementation "com.google.auto.service:auto-service:1.0-rc4"//make sure you add this line
kapt "com.google.auto.service:auto-service:1.0-rc4"//make sure you add this line
}
可能也想检查其他构建文件
注解build.gradle
apply plugin: 'java-library'
apply plugin: 'kotlin'//make sure you add kotlin plugin
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"//make sure version is 8 everywhere
}
应用构建.gradle
确保在主 sourceSet 中添加 srcDir
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'// make sure you add this line
android {
compileSdkVersion 28
defaultConfig {
applicationId "ir.alirezaisazade.annotationprocessing"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
// make sure you add this line
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
// make sure you add srcDir for generated files
sourceSets {
main {
java {
srcDir "${buildDir.absolutePath}/generated/source/kaptKotlin/"
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"// make sure version is 8 everywhere
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//like Glide library that needs a dependency to be implemented in our project
//and an annotation processor to process the annotation of that library
implementation project(":annotations")//make sure you add this line
kapt project(":aprocessor")//make sure you add this line
}
关于android - AbstractProcessor 不生成类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54336934/
我的 AbstractProcessor即使带注释的方法包含导致编译器错误的代码,也会调用实现。 (即,处理器由目标为 ElementType.METHOD 的注释的存在触发)。 经过一番试验,我得到
鉴于此注释: @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public @interface In
我正在构建一个 View 绑定(bind)器,它使用 KotlinPoet 为我的 View 生成一些样板代码。但不知何故,我的注释处理器没有生成 View 所需的代码,因此每当我尝试运行演示应用程序
我正在尝试使用 apt 并生成一些代码,因此我从 here 得到了一个不起作用的示例将其导入 Android Studio,使其工作并放置 here以防其他人想要使用 Android Studio 在
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 6 年前。 Improve th
给定这些类型: @Retention(RUNTIME) @Target(ANNOTATION_TYPE) public @interface Annotation1 { } @Retention(RU
我试图找到处理 @Deprecated 注释的逻辑。 在 Eclipse 中,打开“类型层次结构”(F4) 只会显示我自己的 AbstractProcessor 实现。 有谁知道处理@Deprecat
我正在编写一个依赖于 AbstractProcessor 类的库,因为我想编写一个很棒的库,所以我也希望有一个很好的覆盖范围。由于预处理器 在编译时工作,我不确定如何测试该代码。 我有一些构建应该失败
我希望将来自 KStream 的窗口化批处理输出组合在一起,并将它们写入辅助存储。 我期待看到 .punctuate() 大约每 30 秒被调用一次。我得到的反而被保存了here . (原文件几千行)
我正在尝试开始创建一个 javax 注释处理器,我现在是从 android studio 做的。我只需要我认为的 gradle 依赖项。现在在 gradle 中,我尝试过以下内容: provided
我有一个扩展 javax.annotation.processing.AbstractProcessor 的类,我想用 apt 运行一些 .java 文件。 如何在 apt 命令行(或在 ant ap
我正在尝试创建一个新的注释,我将使用它来进行一些运行时接线,但是,出于多种原因,我想在编译时通过一些基本检查来验证我的接线是否成功。 假设我创建了一个新注解: @Target(ElementType.
使用javax.annotation.processing.AbstractProcessor生成java代码时 (...) FileObject file=filer.createResource(
我正在为 Apache NiFi 开发自定义处理器。我已经创建了我的处理器的nar并将其放入nifi的lib文件夹中并启动了nifi。我已经在 Eclipse 中设置了远程调试器,并在 onTrigg
我想学习 Annotation,我创建了一个演示项目。但是当我创建一个类extends AbstractProcessor 时,Android Studio 找不到这个类。我该如何添加它。 最佳答案
我是反射(reflection)中的新手。有什么方法可以检测特定方法在哪里被调用?例如: public class MyClass { public static void method(){
我是一名优秀的程序员,十分优秀!