Hi, when I run my scala application under tomcat, I am unable to do basic string concatenation, and I get an error stating that no class definition was found for StringBuilder. I'm running under windows 7 (development) and ubuntu (production), and I don't believe that java 1.4.x JDK or JRE has ever been insalled on either system.
Any idea why
val html = "<p>" + request.getParameter("myParam") + "</p>"
isn't working?
This is rather frustrating.