Search code examples
javaandroidspring-mvcmbaas

Connecting SpringMVC app to MBaaS for Android Application


I'm trying to create native Android app with MBaaS e.g. on parse.com where clients could enter some data. The thing is that I would also like to create some admin side web app (e.g. in Java SpringMVC) which could read that user related info from MBaaS service. Is it possible to connect SpringMVC app to MBaaS service? If not, what are my options?


Solution

  • Parse.com has REST API to access your data, so you can write separate web application with admin interface and fetch data from Parse.com via REST API.

    But remember that Parse.com won't host your Java application. You'll need to host it on your own.