What frameworks to use to bootstrap my first production scala project ?
Posted
by Jacques René Mesrine
on Stack Overflow
See other posts from Stack Overflow
or by Jacques René Mesrine
Published on 2010-06-18T01:27:18Z
Indexed on
2010/06/18
1:33 UTC
Read the original article
Hit count: 332
I am making my first foray into scala for a production app. The app is currently packaged as a war file. My plan is to create a jar file of the scala compiled artifacts and add that into the lib folder for the war file. My enhancement is a mysql-backed app exposed via Jersey & will be integrated with a 3rd party site via HttpClient invocations. I know how to do this via plain java. But when doing it in scala, there are several decision points that I am pussyfooting on.
- scala 2.7.7 or 2.8 RC ?
- JDBC via querulous Is this API ready for production ?
- sbt vs maven. I am comfortable with maven.
- Is there a scala idiomatic wrapper for HttpClient (or should I use it just like in java) ?
I'd love to hear your comments and experiences on starting out with scala. Thanks
© Stack Overflow or respective owner