Tagged Questions
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
2answers
37 views
Incorrect MIME type for GET requests
I've been using the Lift Web Framework as a REST only service for quite a while, but I need to use it as a stand alone tool now.
<lift:surround with="default" at="content">
<head>
...
0
votes
1answer
82 views
maven-scala-spring-jetty servlet not initialized
I want to create a maven scala spring hibernate project using ECLIPSE. Im following this tutorial :
http://grahamhackingscala.blogspot.fr/2010/01/scala-spring-hibernate-maven-webapp-how.html
Now I'm ...
1
vote
1answer
58 views
reading DB credentials from props file in lift scala
I am just started working with Scala and lift frame work. i am trying to connect my DB using normal JDBC. i wish to read my DB credentials from the default.props file. i tried the following code so ...
0
votes
1answer
43 views
How to run a Lift-2.4 web app with sbt
I'm trying to run a Lift-2.4 web app following this tutorial http://scala-ide.org/docs/tutorials/lift24scalaide20/index.html
The problem is how to run this app (either on jetty, tomcat or other ...
0
votes
1answer
148 views
Why is Jetty serving css with text/html content type
I'm using an embedded Jetty server in a Scalatra app. The issue is that it serves css files with text/html content type:
Here is the main method:
package yard.web
import ...
2
votes
3answers
161 views
Deployment automation
I have a Lift application that is packaged as a WAR archive and must be deployed under Jetty. However, I want to be able to perform a few tasks automatically:
Specify the target server(or collection ...
0
votes
4answers
127 views
Suitable database and webserver for scalable web application
I am planning to develop scalable web application using Scala programming language.I am new to scala.I am thinking of using nginx for front-end and jetty as a back-end with play framework.I am ...
1
vote
0answers
95 views
can't access css and js folder when deploying liftweb project on heroku
I have a liftweb App that I can run correctly on jetty in localhost using sbt (container:start), I can get all my CSS and JS behavior and I can access to my CSS file via URL ...
1
vote
1answer
496 views
Embedded Jetty 9. Create a Scala servlet
I am looking for the fastest way to create a Scala REST service. Ideally, I don't want to be using any frameworks whatsoever. I am doing this for test purposes and I would like to gain the best ...
0
votes
1answer
206 views
Setup Jetty default webapp folder
Apologies for the newbie question, I am trying to start using Jetty servlet container for a Scala/Ajax application.
I want to change the default webapp directory to a custom one, say ...
1
vote
0answers
93 views
Request log in console for Jetty container using xsbt-web-plugin
I'm using the xsbt-web-plugin to develop a webservice.
For easier debugging I would like to switch on request logs in console like the line below.
[22/Dez/2012:15:29:56 +0000] "GET /messages ...
0
votes
1answer
123 views
log4j is not working with Jetty and liftweb app
I'm using a liftweb service over Jetty with log4j for logging.
here is how I setup the logger in Boot class:
val config = Properties.envOrElse("log4j.configuration","/props/syslog.log4j.xml")
val ...
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 ...
5
votes
1answer
348 views
unfiltered: when to choose netty
I did a quick test in unfiltered, comparing throughput of both jetty and netty as underlying connection handlers. Just serving a (memory-cached) image and running a load test on that. My findings are ...
0
votes
2answers
289 views
Can I read property file with jetty in development?
I am working on a lift project as a sub-project in a gigantic mvn project. I put the property files into:
src/main/resources/props/staging.props
src/main/resources/props/production.props
in the ...
1
vote
1answer
503 views
Deployment strategy for Jetty and Scala with SBT?
I'd like to have Jetty running on a production server and when I have a new code package to deploy I'd like to be able to do an "sbt package" to package up my code into a war file, then copy it over ...
0
votes
1answer
383 views
how do you get sbt web plugin to work with a .scala config
I'm currently getting the error
Plugin classpath does not exist for plugin definition at
file:/C:/project_root/project/
from the below files.
Does anyone know how to configure the web plugin ...
0
votes
1answer
434 views
Why does jersey doesn't pick up my PATH and give me a 404?
I am developping a simple rest service with jersey and scala, mainly for learning purpose. I currently have the following configured
package org.michaelangelomanager.restservice.rest
import ...
3
votes
1answer
625 views
How to start Lift in embedded Jetty?
I have a server, which shall serve some web content as a part of it's duties. It was working using embedded Jetty, and I want to add some Lift's beauty to it (templates, actors, etc).
The problem is ...
13
votes
3answers
2k views
Auto-reloading files in Scala/Lift/SBT .11?
In SBT .7, you could do
~jetty-run
in order to get your files to auto compile and reload the web app whenever something changes. In SBT .11, You can do
~container:start
which also re-compiles ...
2
votes
2answers
779 views
Is there any easy way to run jetty 8 from gradle (like with jettyRun)?
Unlucky I need jetty 8 to work properly with spray/akka (it's scala project).
With older version used by jettyRun I'm getting error like: java.lang.NoClassDefFoundError: ...
1
vote
1answer
99 views
servlet/database: how to do fine-grained database connection and statement management (not bound to servlet lifetime)
Question/Environment
The goal of my web application is to be a handy interface to the database at our company.
I'm using:
Scalatra (as minimal web framework)
Jetty (as servlet container)
SBT ...
1
vote
0answers
249 views
Scalate templates in Scalatra with WAR deployed in Jetty throw ResourceNotFoundException
When attempting to send email using scalate templates, resource not found exceptions are thrown (see below). Initially I thought it was a path issue, as in dev environment on sbt it works file, but ...
8
votes
1answer
1k views
How can I deploy a web app with sbt 0.11?
it seems that both the jetty-run and jetty commands are missing from SBT 0.11. Either that or I am doing something very wrong. I am simply running sbt, then trying to run jetty-run. I have defined a ...
0
votes
2answers
2k views
sbt, jetty and classpath
I'm trying to use the SBT with the xsbt-web-plugin.
Followed the instructions on the projects website but continue to get the following (sorry for the length)
sbt.JettyRunException: Jetty and its ...
6
votes
1answer
2k views
Installing Scala 2.9.1/Lift 2.4-M4 using sbt 0.11.0
I am learning to do web development in Scala. currently trying to install the newest version of Scala/lift with sbt 0.11 in MAC OSX. I so far have already done the following:
1. Installed Scala 2.9.1 ...
2
votes
3answers
492 views
how to read a file from a lift webapp
I want to read xml file in my lift app:
val data = XML.load(new java.io.InputStreamReader(new java.io.FileInputStream(filename), encoding));
However, I am getting java.io.FileNotFoundException. ...
3
votes
1answer
287 views
scala/lift jetty IntelliJ Idea: imported javascript files not showing changes in served page
I have never asked a forum question before so if I'm breaking a rule its unintentional and I'm sorry.
I have a webapp that I am making using scala/lift and jetty in the IntelliJ Idea IDE. I have a ...
1
vote
1answer
463 views
Eclipse Jetty v8.0 JNDI DataSource not available in scala lift application
I use xsbt v.0.10.1, web plugin for it, lift v2.4-M4, Scala 2.9.1, Jetty 8.0.0.v20110901.
In Boot.scala i add such code:
DefaultConnectionIdentifier.jndiName = "jdbc/db"
logger.warn("JNDI connection ...
1
vote
3answers
279 views
SBT 0.7.7 or 0.10.1 for wicket webapp project using jetty for dev
I'm new to Scala and wanting to develop a simple little Scala Wicket webapp to try it out.
I would like to use Jetty as the server for my dev purposes and SBT as the build tool (definitely not maven ...
0
votes
1answer
214 views
lift, jetty - redirect after login goes to wrong path
If I put my application in a subdirectory, e.g. by naming it cm.war, after a successful login the redirect goes to /cm/cm (should be /cm).
I don't believe I have done anything funny in the boot code,
...
0
votes
1answer
515 views
SBT jetty webapp - files from src are not copied into target folder - can't view simple HTML files i placed there
well, I'm a newbie to both SBT and Scala, and I'm trying to create a simple web app.
right now I'm struggling to get some simple HTML files to show on http://localhost:8080
my folder structure is as ...
7
votes
1answer
1k views
Combining Akka, Spray, and embedded Jetty
I'm trying to create a standalone JAR containing Akka, Spray, and Jetty. Ideally I distribute the entire application in that single file, without any external files whatsoever.
I understand how to ...
0
votes
1answer
383 views
xsbt 0.10.x using xsbt-web-plugin fails to find org.eclipse.jetty during build
This used to work with sbt 0.7 using a web plugin.
I'm only trying to compile a servlet, but a standalone embedded jetty would be fine as well.
value eclipse is not a member of package org ...
11
votes
2answers
1k views
Specifying the Jetty port in SBT 0.10
I need to run the embedded Jetty on port different to the default 8080, using SBT 0.10
The question was answered here for SBT 0.7 - In which file do I need to add an override for the jetty port when ...
0
votes
1answer
277 views
“org.fusesource.scalate.TemplateException: loader constraint violation” when using SBTs embedded Jetty and scalatra/scalate
I started getting this error yesterday when using the embedded 'jetty-run' task in SBT. I reverted my code to a previous version and it's still happening.
Note that I packaged up the application and ...
2
votes
2answers
716 views
How do I have sbt's Jetty use a local domain name?
I'd like the version of Jetty launched by sbt> ~jetty to listen on my.name.local, which I've set to 127.0.0.1 in /etc/hosts. It seems to be possible to change Jetty's settings from within sbt.
...
0
votes
1answer
1k views
Embedded Jetty: Setting JVM arguments
I have an embedded instance of Jetty running in my app, which apparently creates another instance of JVM. How can I pass JVM arguments to this instance? I create my embedded Jetty like this:
val ...
2
votes
2answers
738 views
deploying gwt web application on jetty
Hi I am deploying my web application created in Gwt on the jetty.
I have used mongodb as my database.After starting the server it starts deploying the weapp.war
and gives following error -
694 [main] ...
2
votes
1answer
338 views
Scala Lift Servlets within WebServer compilation
I want to learn Scala and do it on real project. This project needs logic to be wrapped within web server. So I made some tests with embedded Jetty and I like it. It is time for making next step to ...
23
votes
4answers
9k views
Debugging Scala code with simple-build-tool (sbt) and IntelliJ
What's the easiest way to debug Scala code managed by sbt using IntelliJ's built-in debugger? The documentation at http://code.google.com/p/simple-build-tool/wiki/RunningSbt lists commands for running ...
9
votes
5answers
3k views
How to deploy a Scala project from Eclipse?
I have a Scala project in Eclipse that I need to package up so I can deploy it to a server. It's based on Jetty but it runs as a standalone application. It contains Scala classes, Java classes and a ...
10
votes
2answers
2k views
Scala/Lift Framework runs just over jetty web server?
I am new with Lift and want to know if it is developed to just run with Jetty but no other web server. Any idea?
7
votes
1answer
2k views
maven and lift using scala 2.8 : lift-mapper missing?
Newbie question since I'm not up to speed using
maven at all.
I'm trying to use scala + lift using scala 2.8, environment
is a win7 box if that matters.
I create a basic project using:
mvn ...
4
votes
3answers
1k 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?
