Scalatra is a tiny Scala web framework, inspired by Sinatra.
0
votes
1answer
23 views
How to debug scalatra application in IntelliJ Idea?
I can't find any documentation or examples of debugging Scalatra apps in IntelliJ Idea.
Is it possible to run the Scalatra app in debug mode to attach the Idea?
0
votes
0answers
15 views
Scalatrasuite tests always failing in sbt, succeeds when running test in IDE
I've been having a bit of an issue with ScalatraSuite unit testing with ScalaTest in sbt.
Versions that I am using:
Scalatra: 2.2.1
ScalaTest: 1.9.1
ScalatraScalatest: 2.2.1
Jetty: 9.0.2.v20130417
...
0
votes
0answers
48 views
Scalatra serializes object to JSON, but its relation is not serialized
I'm using Scalatra and Squeryl to make a Single Page Application example, so I need my Scalatra Servlet always returning JSON. It's working perfectly when serializing an object with no relations.
I ...
1
vote
2answers
69 views
Scala: how to use google/facebook credentials to provide access control for my application via openID on Heroku
I'm writing a hobby project with Scala on Heroku. Currently I have my own authentication mechanism which uses http basic auth. I'd like to be able to use people's existing credentials from e.g. google ...
0
votes
0answers
19 views
How can one change the location of the “webapp” directory for a Scalatra application?
By default, Scalatra expects the "webapp" directory to be at src/main/webapp. How could that be changed to, e.g., content/doc-root?
sbt allows for customizing its default directories using something ...
0
votes
0answers
29 views
Option[Date] is serializing to JSON as an empty object
abstract class EntityBase(
var id: Long = 0,
var createdOn: Option[java.util.Date] = None
)
extends ScalatraRecord
{
}
class Article (
id: Long,
var title: String,
var body: String,
...
0
votes
0answers
15 views
Scalatra commands with default value
This question is regarding Commands, and I am having an issue where by specifying that the command should allow blanks and has a default value doesn't quite do what I expected.
Here's my command:
...
0
votes
1answer
61 views
Most lightweight webservice framework to mock external Webservice in Scala
I am trying to test a component which relies on an external webservice, which I access through Play WS library. This components receive the url of the webservice.
I would like to unit test the ...
0
votes
0answers
24 views
Set charset when processing xml using Dispatch Databinder 0.10
I'm wrapping an upstream API with a Scalatra application and using Dispatch to make async requests. However, I'm having trouble turning the upstream XML into xml.Elems using Dispatch's built-in XML ...
0
votes
2answers
23 views
Jade interpolation within javascript
(Note, this is the Scalate Jade, if that makes a difference)
I have the following route:
get("/fruit") {
contentType = "text/html"
jade("fruity", "fruit" -> "apple")
}
And this fruity.jade ...
0
votes
1answer
28 views
Value not set error in Scalate/Jade
I am new to Jade and Scalate. I have the following route defined:
get("/") {
jade("index",
"pageTitle" -> "Welcome to Jade",
"welcomeMessage" -> "Hello my pretties")
}
And the ...
1
vote
1answer
76 views
Akka, Scalatra and Web state questions
This is a two part question, firstly more of a design question than how to implement it, and secondly some implementation concerns with Akka.
I'm using Scalatra to build a REST service end point ...
0
votes
2answers
25 views
Scalatra Databinding
I'm playing with command model binding and I looked at the example github project and I have issues when using the dependency:
"org.scalatra" % "scalatra-data-binding" % "2.2.0-RC1"
Taking the ...
0
votes
0answers
57 views
scalatest unit tests are not logging in scalatra
When running >sbt test on a scalatra application, log statments occurring in the body of the unit tests are not appearing.
The following message appears in the run output:
SLF4J: Actual binding is ...
1
vote
1answer
158 views
Scala app exceeds Heroku memory quota
I am hosting the backend for my mobile application on Heroku. It's written in Scala using Scalatra to expose the REST API. In addition to that, I'm running a worker that fetches data and pushes it to ...
0
votes
1answer
47 views
Accessing flash map from Jade template in Scalatra
I'm creating application using Scalatra and I'm using Scalate/Jade for templating. I try to add flash support to my application. I mixed FlashMapSupport into into my Servlet and I'm able to access ...
2
votes
2answers
75 views
Scalatra app on Openshift - setting Jetty IP
I'm trying to deploy a minimal Scalatra application on Openshift with DIY cartridge. I've managed to get SBT working, but when it comes to container:start, I get the error:
FAILED ...
0
votes
1answer
40 views
How to define sub-resources routing in Scalatra
I have REST resources like author and article. There can be multiple Authors and each author can own multiple articles. I know it is possible to model their Scalatra handlers in one servlet like
...
3
votes
2answers
120 views
scalatra 2.2.0 upgrade encountered NoClassDefFoundError:GenTraversableLike
I am trying to upgrade Scala/Scalatra versions in our project to the following:
scala 2.10.1
scalatra (and scalatra-scalate, scalatra-scalatest) 2.2.0
using sbt 0.11.3
The code compiles OK but, ...
0
votes
1answer
81 views
JADE/SCALATE template error - InvalidSyntaxException
I'm trying out Jade (via Scalate) and am running into an error that I'm not finding an answer to. (Or, at least not seeing.) I mocked up a form using BlueGriffon (it's been years since I've coded ...
1
vote
1answer
87 views
How does Scalatra send params to the routes?
I'm asking this as a relatively new person to Scala. I've seen examples of how to create 'control constructs' in Scala, but I don't know it well enough to follow the code of Scalatra itself.
Can ...
1
vote
1answer
102 views
spec2 tests failing for scalatra app with swagger support
When calling a prototypical spec3 test case on a scalatra app with swagger support, the tests fail.
Here's the test/spec code:
ServletSpec.scala
class ServletSpec extends ScalatraSpec { def is =
...
0
votes
1answer
90 views
scalatra case t: Throwable => t.printStacktrace()
I am just beginning with scala and scalatra. Following the guidline at
http://www.scalatra.org/getting-started/first-project.html
I am running into a compilation error that I am not sure how to ...
1
vote
2answers
181 views
Scalatra Basic Authentication for part of an application
I'm trying to figure out how to write an app which has basic authentication enabled for certain URLs. The authenticated part should not have form-based authentication, just the default login I can do ...
0
votes
0answers
83 views
ScalatraServlet with AkkaSupport with GZipSupport
I'm trying to use Scalatra with AkkaSupport and the newly introduced (2.2.0 RC2) GZipSupport. It fails and I'm trying to figure out if I'm doing something wrong, before I file a bug report. The code ...
1
vote
2answers
236 views
Scalatra test restful JSON object
I'm writing test for some JSON restful API using Scalatra, a snippet looks like following
class MyScalatraServletTests extends ScalatraSuite with FunSuite {
test("An valid request should return ...
0
votes
1answer
93 views
Scalatra host static
I can host scalatra static files (eg js) from /static if i register the default servlet for /static, How can I specify /static outside of the classpath, ie c:/path/static So that-way i can develop the ...
1
vote
1answer
85 views
jade “include” doesn't work as expected
Referencing another Jade file from within one:
include ../widget
Renders HTML like this:
<include>../widget</include>
Using Scalatra, specifically. What am I doing wrong?
1
vote
1answer
116 views
Default AkkaSupport Servlet example doesn't work
If I have a servlet taken directly from the example on the Scalatra docs page:
package me.myself.andi
import _root_.akka.dispatch._
import org.scalatra.akka.AkkaSupport
import ...
3
votes
1answer
317 views
From Play! to Scalatra, templating headaches, directory structures
I'm trying to convert a Play! 2.0 application into a Scalatra application. I've had some success, but there are 3 issues remaining, 1 of which has its own ticket.
1) I understand that ...
2
votes
1answer
167 views
Declaring a different compile path for CoffeeScript
I have a Scalatra app that compiles CoffeeScript, using https://github.com/softprops/coffeescripted-sbt, to a default location, target/scala-2.9.1/resource_managed/main/js. I want to put the generated ...
0
votes
1answer
168 views
Can I add multiple servlets to a WebAppContext?
I have the following Scala code to setup a Jetty server with Scalatra.
val server = new Server(8080)
val context = new WebAppContext()
context.setResourceBase("visualization")
context.addServlet(new ...
2
votes
1answer
157 views
Scalatra Servlet init() during test (Jetty ServletTester)
I am testing a Scalatra servlet that does some important initialization in its init(context: ServletContext) method.
During tests (with ScalatraSuite) that init is not executed.
How should I do my ...
0
votes
0answers
126 views
cake pattern + library dependency + tests = object recreation madness
Why is my Aggregator object being recreated multiple times?
I have a multi-module sbt project.
One project contains a scalatra servlet, and it depends on another (library-) project, with does ...
2
votes
2answers
3k views
Error while posting data from angular js form
I have an angularJS form which posts data to a scalatra servlet. When the form gets submitted I can't get any form params in my scalatra servlet.
Below is my code
AngularJS
$scope.createUser = ...
0
votes
2answers
336 views
Different ways of handling exceptions in Jetty/Tomcat
Short version of the question: What would cause Scalatra/(Jetty or Tomcat) to pass the execution to handle of an ErrorHandler without setting the request attribute "javax.servlet.error.exception"?
...
1
vote
1answer
122 views
Is there a good way to deal with form submission in Scalatra
Right now I'm just using params function to get the data that has been posted to an URL.
Is there any other way to deal with forms in Scalatra like in Play Framework? Does Scalatra support an object ...
0
votes
1answer
249 views
Trying to define Scalatra webservice with JSON parameters
I am trying to define a webservice, using Scalatra, where the parameters are passed in in the body, preferably as JSON, not having everything on the url, as I have it now.
So, I would like this test ...
0
votes
0answers
185 views
Unit testing a Scalatra POST service with specs2
I am trying to use this test to test my webservice:
"POST /phaseupdate" should {
"return status 200" in {
put("/phaseupdate", Map("filename" -> "test1", "entryaddress" -> "address ...
0
votes
2answers
1k views
Jetty HTTP 413 Header Full error - Java/Scala
I am using Jetty 7.6 with Scalatra web framework. In some of the requests, I need to send a large text as response body to the client, I use HttpServletResponse.getWriter() to write response.
I ...
12
votes
2answers
4k views
Choosing a Scala web framework [closed]
I am about to start a project for a web application that should run on a Tomcat server. I have decided to go for Scala - the other alternative where I work being Groovy - essentially for type safety. ...
0
votes
1answer
308 views
GlassFish 3.1.2 + Cluster + Web Container Properties
I have an issue in Glassfish regarding dealing with properties wehn setting up a web application We are moving from using Jetty to a clustered environment setup with GlassFish on Amazon AWS
...
-1
votes
1answer
235 views
Scalatra on nginx : how to set up?
Would like to set up Scalatra to run on a box running nginx.
Already have nginx set up correctly, and am able to serve static html pages, however, I now wish to point it to a Scalatra app. All of the ...
0
votes
1answer
475 views
Working with a Scalatra application in an Eclipse workspace? (i.e. build path)
I am experimenting with a small Scalatra web application, which I have imported as a project into Eclipse.
I have used Eclipse to manage a few Lift applications before. With a Lift project, SBT ...
1
vote
1answer
328 views
Scalatra — byte array/image stream in request body
There's tons of documentation on Internet how to send a file stream in HTTP POST request in other languages, but not in Scalatra.
To the topic: I'd like to send an image as byte array or as a file ...
1
vote
2answers
338 views
Simple scalatra-test specs2 example throws Exception
I'm getting this exception when running the scalatra specs2 example from the scalatra docs:
ThrowableException: org.eclipse.jetty.http.HttpGenerator.flushBuffer()I (FutureTask.java:138)
Here is the ...
2
votes
2answers
434 views
Scalatra Session without cookies
I'm using the Scalatra framework to build a web application.
The application relies on sessions, but I can't use session cookies (because technically there is only one user, which runs multiple ...
0
votes
2answers
170 views
error deploying scala app on GAE
Iam trying to develop a scala web app and try to deploy in to GAE. While deploying app from the sbt appengine prompt (appengine-deploy), I get this error. I have no clue why its happening but ...
1
vote
1answer
215 views
Change in scalatra filter behavior
I have multiple filters in my application, with one at the root.
<filter>
<filter-name>root</filter-name>
<filter-class>
my.own.classpath.RootFilter
...
5
votes
2answers
584 views
How to get the body of post request in Scalatra?
I have a scalatra servlet:
post("/asdf") {
???
}
And my clients send xml in post body, so I need to extract raw text from request. How do I do it in scalatra?


