Top "Spring-android" questions

Spring for Android is a framework that is designed to provide components of the Spring family of projects for use in Android apps.

Spring RestTemplate HTTP Post with parameters cause 400 bad request error

Possible duplicate Need help on RestTemplate Post Request with Body Parameters? and Spring RESTtemplate POST but these answers don't work …

java android spring spring-android
Android Gradle Duplicate files copied in APK META-INF/license.txt

I'm going to add RESTful Web Service support with Spring to my Android application as described here https://spring.io/…

android gradle spring-android
java.lang.IllegalArgumentException: Illegal character in scheme at index 0: localhost

I'am developping an android app that receive an data from server (localhost - mssql and nodejs), save data and then …

java localhost spring-android
Deserialization issues with Joda Time / Jackson 2 / Spring - Can not instantiate value of type [simple type, class org.joda.time.DateTime]

I'm getting an exception when attempting to deserialize an JSON string which contains date strings to a POJO using Joda. …

jackson jodatime spring-android
restTemplate ResourceAccessException on server reboot

I'm using restTemplate (from the spring android framework) on my android application to contact a rest server with post, i'm …

android resttemplate spring-android
Adding Spring for android dependency to gradle + Android studio project

Official Spring for Android page mentions to add following dependency code. dependencies { compile 'org.springframework.android:spring-android:1.0.1.RELEASE' } which is …

android spring gradle android-studio spring-android
Send multipart file via RestTemplate

i have some problem about send image file (multipart) using android via Spring restTemplate. here is my controller on server : @…

android spring rest resttemplate spring-android