Can Scala be used to write GWT applications?

后端 未结 7 1791
旧时难觅i
旧时难觅i 2020-12-29 04:19

Can Scala be used to write GWT applications?

(NOTE: Java/Scala novice here...)

相关标签:
7条回答
  • 2020-12-29 05:16

    Short answer is GWT can call into a program written using Scala. The most popular web framework written in Scala is Lift - http://liftweb.net/ and would be an alternative to GWT if you wanted a pure Scala solution.

    GWT is a web framework written using Java. The client side is written in the Java Language and compiles into JavaScript and the server side is written in Java and can use any resources available in the Java JVM. Scala is a language that compiles into bytecodes that are executable on the JVM and can interact with standard Java programs as well.

    0 讨论(0)
提交回复
热议问题