2

と で永続化する個人用のアプリケーションJAVAを作成しました。に等しいを作っています。経由でデータを同期したいと思います。Android用のJPAとEclipseLinkはありますか? 私はこれについて何も見つけていません。そこにはどんなオルタナリヴァがありますか?JPAEclipseLinkandroidDropbox

4

2 に答える 2

1

You can run almost anything which is pura java on android (with some minor exclusions ), but this does not mean that you should. Hibernate ( which is implementing JPA ) can be run on android, but your application willbe too heavy. Your handset is not heavy server system.

I would propose to store data locally serialized to JSON and exchange JSON data files via dropbox ( but of course I do not know anything about your use case to make better proposals )

于 2013-01-18T11:58:45.277 に答える