-
Notifications
You must be signed in to change notification settings - Fork 1
Scala code called from java with Play!
peterszatmary edited this page Feb 26, 2016
·
2 revisions
package core.scala
class ScalaExample {
def helloWorld(message : String) : String = {
return "Hello " + message + " from scala in Java.";
}
}
public Result scala() {
ScalaExample sc = new ScalaExample();
String helloFromScalaInJava = sc.helloWorld("Senacor");
return ok(helloFromScalaInJava);
}
GET /scala @controllers.Application.scala()