One Play 2 Framework App - use both java and scala

2019-03-23 09:04发布

I want to use morphia for my data access, but I also want to try to use Scala for web content. Is it possible to mix and match Java and Scala files, or if i choose to use Java, i have to stick to Java?

I know this is a newbie question, I'm coming from the python/django world, I really like Play, did some Java programming in the past, but Scala looks very interesting, so while I'm a bit afraid to fully jump into Scala, I want to be able to use it alongside Java.

Thanks for all the help.

2条回答
太酷不给撩
2楼-- · 2019-03-23 09:32

You can definitevelly use both java and scala since Play is a JVM framework, not a Java nor a Scala one.

So in controllers, you could have a ScalaApplication.scala and a JavaApplication.java if you wish.

And they are callable (redirectable, ...) from each other.

查看更多
贪生不怕死
3楼-- · 2019-03-23 09:40

Yes ,it is possible to use both Java and Scala files in a Play app. In fact the template system itself demonstrates an aspect of this. You can also have a mix of Scala and Java Controllers. (I haven't tested it yet but I presume it should be possible to mix Scala and Java Models as well ).

This is because both Scala and Java files are changed into nearly identical bytecode and hence the JVM is agnostic to the language in which the code was written in.

Note: When creating a new application from the Play console an option is given to create a Java Scala or empty project.This option sets the default configuration for the building and mainly deals with the imports that are automatically available in the templates.It does not prevent you from adding code from the other language later

查看更多
登录 后发表回答