What is Scala?
Scala is a modern language not unlike Groovy.
It is said to be more powerful (and faster) than Groovy or Rails which has been the reason for its adoption at sites like Twitter.
|
Objective-C |
Java |
Scala |
---|---|---|---|
Mutable/Immuable Datatypes |
Collections (e.g: NSArray/NSMutableArray) |
No |
All datatypes |
Concurrency |
Grand Central Dispatch (extensions) |
Threads |
Actors |
Closures |
(extensions) |
No |
Built-in |
Why Use Scala?
With Web 2.0, building concurrent WebObjects applications is a must.
Developing and maintaining a concurrent or multi-threaded WebObjects application can be challenging.
Scala offers concurrency built into the language.
So it may offer new solutions to allowing concurrency in WebObjects.
Can WebObjects be Programmed With Scala?
Yes. It is very simple.
Scala compiles to java bytecode. Hence using it with WebObjects is fairly straightforward.
How to Develop WebObjects With Scala
- Install the Scala eclipse IDE
- Add Scala support to your project
- Right-click your project in the WO Explorer
- In the context menu select Scala -> Add Scala Nature
- Convert or use
.scala
instead of.java
source
Note
This is for Eclipse/WOLips developers
WO Scala Example
The following is a mixed Java/Scala version of the WO Movies D2W app.
All the EO logic and WO components are in Scala.
Only the Application class is Java.
Setup
- Install and run the OpenBase OBMovies database.
- Right-click on Application.java and run as a WOApplication (as usual).
EO Templates
See: Scala templates