我尝试按照AndroidAnnotations REST Documentation。
但是我找不到有关MappingJackson2HttpMessageConverter的错误。
要设置AndroidAnnotations我遵循Gradle Setup ...这很好用,一个小项目正在运作。
但是很快,我尝试使用MappingJackson2HttpMessageConverter它停止工作。
以下是我的Gradle依赖项:
dependencies {
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
compile "org.androidannotations:ormlite-api:$AAVersion"
apt "org.androidannotations:ormlite:$AAVersion"
compile "org.androidannotations:rest-spring-api:$AAVersion"
apt "org.androidannotations:rest-spring:$AAVersion"
compile 'com.fasterxml.jackson.core:jackson-core:2.7.3'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.7.3'
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.3'
}
我在这里缺少什么?
谢谢, Urkman
答案 0 :(得分:1)
您还必须添加Spring Android REST模板依赖项:
dependencies {
compile 'org.springframework.android:spring-android-rest-template:2.0.0.M4'
} repositories {
maven {
url 'https://repo.spring.io/libs-milestone'
}
}