Tagged Questions

Lift is an expressive and elegant framework for writing web applications. Lift stresses the importance of security, maintainability, scalability and performance, while allowing for high levels of developer productivity. Lift open source software licensed under an Apache 2.0 license. It is written ...

learn more… | top users | synonyms (1)

74
votes
18answers
21k views

What Scala web-frameworks are available?

I've just started learning Scala and the first thing I'm going to implement is a tiny web-application. I've been using Erlang for the last year to implement server-side software, but I've never wrote ...
0
votes
1answer
1k views

Which of Scala or Groovy should I choose? [closed]

i've experience about a year in Ruby on Rails and 2 years in Java. After Ruby and Java, in your opinions what is prefered programming language should i learn between Groovy and Scala ? and how about ...
61
votes
10answers
17k views

Why would I use Scala/Lift over Java/Spring?

I know this question is a bit open but I have been looking at Scala/Lift as an alternative to Java/Spring and I wonder what are the real advantages that Scala/Lift has over it. From my perspective and ...
24
votes
3answers
5k views

Frameworks comparation: Lift, Play and Wicket

What are the advantages and dis­advantages of frameworks Lift, Play and Wicket? What characteristics are best or only supported by each? Thanks
9
votes
1answer
225 views

Liftweb: create a form that can be submitted both traditionally and with AJAX

Is it possible in Lift web framework to create forms (and links) that react via AJAX, but also work without Javascript support? If so, how? When I build the form using <lift:form.ajax>, the ...
32
votes
1answer
15k views

How can I construct and parse a JSON string in Scala / Lift

I am attempting to use JSON to send data between the browser and my app. I am attempting to use Lift 1.0 to create and parse JSON strings, but for some reason I am unable to parse the JSON I just ...
13
votes
5answers
2k views

How do the Scala based frameworks stack up for a complete Scala newbie - Lift, Play, Circumflex, etc

There has been a lot of movement in the Scala based web framework community of late. Coming from Rails, Rake, ActiveRecord and migrations - which is a good Scala framework to build production sites in ...
107
votes
14answers
15k views

Should I use Play or Lift for doing web development in Scala?

I'm stuck on whether I should focus on Play or Lift for doing web development in Scala. Play looks very polished. The Scala-specific tutorial looks amazing. Furthermore, since I've been coding in ...
42
votes
4answers
10k views

How to create SBT project with IntelliJ Idea?

I just got started with Scala/LiftWeb/Sbt developing, and I'd like to import a Sbt project in IntelliJ Idea. Actually, I managed to import my project in two different ways: 1) with Maven. I created a ...
18
votes
7answers
7k views

Scala framework for a Rest API Server?

We are thinking on moving our Rest API Server (it is inside the web service, on Symfony PHP) to Scala for several reasons: speed, no overhead, less cpu, less code, scalability, etc. I did't know Scala ...
16
votes
3answers
3k views

For my next project, a web-app, should use scala+wicket or scala+lift?

Given the various advantages of the Scala language I have decided to write my next web-application in Scala. However, should I be using Wicket or Lift? I am familiar with Wicket, and like it quite a ...
23
votes
4answers
6k views

PermGen problems with Lift and Jetty

I'm developing on the standard Lift platform (maven and jetty). I'm repeatedly (once every couple of days) getting this: Exception in thread "7048009@qtp-3179125-12" java.lang.OutOfMemoryError: ...
8
votes
5answers
4k views

Which is better framework Java/GWT or Scala/Lift?

I wanted to start a new web application project and I am confused between two frameworks that is GWT(Java) or Lift(Scala). So I want your opinion which one I choose? Both are good according to my ...
5
votes
2answers
2k views

Can I use the Scala lift-json library to parse a JSON into a Map?

Is there a way to use the lift-json library's JObject class to act like a Map? For example: val json = """ { "_id" : { "$oid" : "4ca63596ae65a71dd376938e"} , "foo" : "bar" , "size" : 5} """ val ...
6
votes
3answers
325 views

Why doesn't SBT 0.7.7 work correctly on my Linux system? (case details inside)

First of all, I'd like to ask to correct my question title if something better comes into your mind. Let's take a Lift REST web service example from the Simply Lift book by David Pollak here. If I ...
2
votes
3answers
264 views

What's a good approach for a Ruby on Rails developer to learn Lift with no prior Java/Scala experience?

Thing's I'd like to know: Do I need to know Scala? Do I need to know Java? Which books/resources will set me on the fast track?
2
votes
3answers
1k views

Lift compared with Grails

Lift/Scala is getting a lot of attention lately. Having worked with Grails in the past (and finding it quite handy BTW), I'd like to know if there's anyone who has tried both and what's his/her ...
8
votes
2answers
601 views

Why do people use _? as an identifier suffix?

I start reading Lift framework source code, I find that there're so many methods are defined using a name like methodName_? , is there a convention that _? has some special meaning? def empty_? : ...
3
votes
1answer
510 views

What are the advantages and disadvantages of Liftweb Comet?

What are the advantages and disadvantages of Liftweb Comet over other HTTP Server push technologies? - How scalable is liftweb comet? - design issues and dependencies etc..,
1
vote
1answer
176 views

Lift with Maven and IDEA: Scala plugin can't find dependencies

I'm using Intellij IDEA 11, Scala 2.9.1, and Lift 2.4M4. I've created a Maven module (following the "Using Pure Maven" instructions here) based on the Scala 2.9.1 and Lift 2.4 milestone 4 archetype. ...
0
votes
1answer
257 views

SCALA Lift - S.param access within Comet Actor

I'm attempting to retrieve a url parameter within a CometActor to validate that the source of the data matches the destination, e.g A user sends a message from room A, which should be received and ...
0
votes
3answers
589 views

Is PHP or PHP based web framework stateful or stateless? [closed]

Along the same lines that for java centric applications, play framework is stateless and lift framework is stateful as is any servlet or JEE container like tomcat or glassfish is statefull, is PHP web ...
0
votes
1answer
371 views

Lift webapp has directory and resource with the same name, but gives 302

I deployed example.war to Tomcat 6.0.32 (latest at time of writing), and the deployed webapp contains the following: $ find example | egrep -v "WEB-INF/lib|WEB-INF/classes" example ...
40
votes
3answers
2k views

What are your experiences developing in Scala/Lift?

I heard a lot of good things about Scala and the Lift Web framework recently, especially from Foursquare's guys hence, I might use this technology in my next projects. Are any of you Scala/Lift ...
44
votes
4answers
9k views

Is the Lift framework as “easy” as Ruby on Rails or Django?

Just wondering if anyone has experience with the three. I have used read through some RoR and used Django. They seem fairly easy to use. Is lift "easy" like these two are? I know easy is ...
29
votes
9answers
13k views

How to start playing with Lift framework?

What I think would be useful for me (and hopefully for other SO readers and Scala fans) is: How to painlessly set up lift on linux (ubuntu) (apt-get install lift #does not work) Is there any free ...
36
votes
4answers
6k views

why is the lift web framework scalable?

I want to know the technical reasons why the lift webframework has high performance and scalability? I know it uses scala, which has an actor library, but according to the install instructions it ...
28
votes
4answers
3k views

Different Scala Actor Implementations Overview

I'm trying to find the 'right' actor implementation for my thesis. I realized there is a bunch of them and it's a bit confusing to pick one. Personally I'm especially interested in remote actors, but ...
13
votes
4answers
2k views

Book suggestion for Scala Lift Web Framework

I am sinking my teeth into Scala. Beginning Scala is a good book to go with, for a Java developer. However, I want to look into Lift framework as well. Please suggest a good book (or a comprehensive ...
4
votes
4answers
2k views

Liftweb Menu customization

I want to create a menu that looks like: HOME | FOO | BAR | ABOUT | CONTACT How might I go about doing this? Here is what I have tried: <lift:Menu.builder ul:class="menu" ...
8
votes
2answers
272 views

What do the % and %% operators do when setting up SBT dependencies?

In Lift Web Framework, dependencies for Simple Build Tool (SBT) are specified in LiftProject.scala. That file includes this code: override def libraryDependencies = Set( "net.liftweb" ...
5
votes
1answer
567 views

What are good combinations of Scala + Web framework + Javascript framework? [closed]

I have been trying for a long time to study something different to build my so planned web project (lol) and I went through some Django and Rails but gave up, mainly because of the language. I work ...
3
votes
1answer
541 views

Lift filter to force ssl

in a struts application, I have a filter that forces certain pages to be accessed only over https via redirection. I'm thinking in porting it to lift so my question is: In the this environment, is ...
2
votes
2answers
1k views

How do I convert Array[Node] to NodeSeq?

I'm trying to integrate a Lift application into some existing Java code. In one of my snippets, I have an Array of Java objects that I need to map that into a NodeSeq. I can get an Array of Node's, ...
10
votes
3answers
715 views

Create web application in Lift Scala

I'm looking to create a web application using Lift for a mini project I am working on. However, I really don't know where to begin. The app will consist of: User accounts User profiles ...
10
votes
3answers
4k views

Reverse AJAX (Comet) and Spring MVC vs. Scala/LIFT?

There is a demo by IBM that shows how easy Reverse AJAX can be used with DWR 2. On the other hand, Scala/LIFT comes with built-in Reverse AJAX capability. Question: Any experience if this works ...
5
votes
2answers
305 views

Trying to understand scalaz state monad

I'm trying to start using scalaz in my lift project. For that purpose I'm rewriting some code to meet the style. Consider a code for logging in a user: def login: CssSel = { var password = "" ...
5
votes
1answer
305 views

IntelliJ IDEA doesn't load Lift libraries from a SBT project

I've created a blank project via sbt using the most basic guide, specifically: > cd xyz > sbt # here we create a new project w/ Scala 2.8.1 > *lift is org.lifty lifty 1.6.1 > lift create ...
4
votes
2answers
267 views

Implicit conversion of a generic container for an implicit parameter in Scala

Is there a way to make this work? (Scala 2.8.1) class A def f(implicit a: A) = 0 class Vendor[T](val v: T) implicit val vendor = new Vendor(new A) implicit def vendorToVal[T](implicit v: Vendor[T]) ...
4
votes
3answers
984 views

How to create stand-alone lift web application?

How to make a standalone lift application? Which tools/libraries to use? How does the performance compare to using lift application as a war in some application server?
2
votes
2answers
56 views

Lift: Sending notifications to the client from within a Future

In lift, I have a page that accepts a few files to be uploaded, and then processes the files (which takes around a minute+) I don't want to make users wait the full minute just to see another page, so ...
0
votes
0answers
221 views

Play counter example to Lift for statefulness

In Chris Hagan's answer regarding Lift vs Play he states that Lift's statefulness does actually make it easier to code, giving this example for Lift: private def inviteUser(group:Group) = { a(() ...
10
votes
2answers
410 views

Parsing a large (30MB) JSON file with net.liftweb.json or scala.util.parsing.json gives OutOfMemoryException. Any recommendations?

I have a JSON file containing quite a lot of test data, which I want to parse and push through an algorithm I'm testing. It's about 30MB in size, with a list of 60,000 or so elements. I initially ...
6
votes
3answers
2k views

Lift vs. Others

anyone have any experience with lift and how it compares to more widely used frameworks like rails and django?
5
votes
5answers
2k views

Develop a Scala/Lift Web App using Eclipse and Tomcat

So I have spent the past 11 hours now trying to get even the simplest Scala/Lift app to run on Tomcat through Eclipse. Apparently no one is trying to do this or it is the easiest thing in the world so ...
4
votes
3answers
359 views

How to use Spring Autowired (or manually wired) in Scala object?

I am trying to use Spring with Scala. I know Autowired works with Scala class, but I am using a web-framework that requires an object and I want to inject a dao into it. I wonder how to do this? ...
4
votes
1answer
426 views

Problem: “Extracting” JSON using lift-json in an Android (Scala) application

I want to deserialize a JSON-String using the lift-json library. In my Android application I'm using Scala 2.9.0 and lift-json_2.9.0_2.4-M1. I took a simple example from lift-json readme, but ...
3
votes
3answers
524 views

Can snippets take parameters in lift?

Is there a way in lift to pass parameters to snippets? I am trying to write a pluraize filter for my page that will display the word "user" or "users" depending on how many there are: 1 user 2 users ...
3
votes
1answer
281 views

How to add a new page in Lift framework

How can I add a new page in the webapp directory in lift that can be accessed by users? Currently only the index.html can be accessed through http://localhost:8080/ or ...
3
votes
1answer
866 views

lift import net.liftweb returns an error “not found: value net”

I'm new with scala and lift but I already got the pocketchangeapp up and running and playing around with the RestAPI thing in it. Now I created a new project and it worked quite well until last night. ...

1 2