gpt4 book ai didi

未找到 Android 注释 MappingJackson2HttpMessageConverter.class

转载 作者:行者123 更新时间:2023-11-29 19:57:00 25 4
gpt4 key购买 nike

我尝试在我的应用中使用注释。我按照文档中的说明创建了接口(interface),但未找到 MappingJackson2HttpMessageConverter.class。你能告诉我为什么吗?也找不到 EvenList :/

@Rest(converters = { MappingJackson2HttpMessageConverter.class })
public interface MyRestClient {
@Get("http://company.com/ajax/services/events")
EventList getEvents();
}

注释工作正常。我的 build.gradle :

apply plugin: 'com.android.application'
apply plugin: 'android-apt'
def AAVersion = '3.2'

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
}
}

apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName 'com.example.package.name'
}
}

android {
compileSdkVersion 21
buildToolsVersion "21.1.1"

defaultConfig {
applicationId "com.example.package.name"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
}

最佳答案

Android 注释 REST APISpring Android 的包装器休息模板模块。因此你需要添加android spring dependencies到你的 gradle 文件。

dependencies {
compile 'org.springframework.android:spring-android-rest-template:2.0.0.M3'
}repositories {
maven {
url 'https://repo.spring.io/libs-milestone'
}
}

也不要忘记在您的实现类中包含以下行

导入 org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;

关于未找到 Android 注释 MappingJackson2HttpMessageConverter.class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36653789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com