Using Dalvik VM On Server for Web Development?
I am wondering if there are limitation stopping Dalvik VM work as a Server VM? A Previous discussion already stats that most of java code should work. Since Dalvik VM uses less memory, which would be very useful for VPS users.
Ar开发者_高级运维e there anything similar being done? I Did a google search and found Zero things. Am i missing something? That is can not be used this way?
DalvikVM is not a "standard"(pdf) JVM. It's a JVM explicitly geared towards operating on a mobile device and it runs a modified version of Java. Using this as a webserver would be a bad idea, particularly on the grounds that it doesn't fully support JavaSE (wikipedia) and it doesn't even mention having support for J2EE.
精彩评论