Where can I find a full featured demo application of a scala web application with a db backend?

302 Views Asked by At

I've been really interested in scala for awhile. Now that Intellij 13 has better Scala support it seems like its becoming more and more practical to work with. For example they have SBT support.

Now I have a bit of a finicky learning style. If I could find an operating example of a Scala application with Lift using

SBT for build A relational database and ORM Lift

I'd be able to pick this up a lot faster. A lot of the demos I've found are way way too small to be usefull.

Anybody have a suggestion for where to find a fully features open source app in Scala?

2

There are 2 best solutions below

0
On

They have some Lift "quickstart projects" here. Some more examples here. And of course, Lift's Github, where you can find project templates (more specifically, look at this link).

There is also Typesafe, but they offer Play instead of Lift.

1
On

Lift has 2 db layers. They are mapper and record. Record is little more modern in my opinion.

The next thing: record can have different backends for work with database. I use squeryl ( good introduction is here - http://squeryl.org/introduction.html )

And the last thing, you can use different databases, of course: mysql, postgresql, mongodb, etc, you see...

What about me - I use lift squeryl record with postgresql.

What about examples:

Not so bad full _simple_ example (book shop but without user as i remember) is here, see https://github.com/migo/test-squerylrecord .