I want to learn Scala and do it on real project. This project needs logic to be wrapped within web server. So I made some tests with embedded Jetty and I like it. It is time for making next step to Scala. I am interesting what combination below you’ll recommend me?
1) Embedded Jetty + Java Servlets + Scala;
In this combination I can bake “main” web server within Java code and use Servlets for web requests/responses; And Core project’s logic can be written on Scala and then can be imported into “main” web server logic as Java package;
2) Embedded Jetty + Lift + Scala;
Do not write Java code, but write all “main” web server logic on Scala with Lift framework; Core project’s logic can be still written on Scala;
What advantages of each combination do you see?
Thank you for any advice!!!;)
This is an old post, and you might have already decided which way to go, but here are a few things I can point out.
I hope this will help,
KK