1
vote
1answer
89 views

Tapestry 5.36 deployed on Jetty 9, encoding issue

I just deployed my Tapestry 5 app on Jetty 9 web server, running on Debian Squeeze. I have problem with encoding. I can't see Serbian letters (šđčćž). For example, I see "Dobrodošli" as "Dobrodo??li". ...
1
vote
3answers
526 views

Tomcat7 application fails to start

I have got a following problem that I am not sure how to solve. I believe that there is some dependency incompatiblity problem, but I dont know how to check. Does anyone have any idea where to start? ...
0
votes
1answer
74 views

how to find the port number at application startup in apache tapestry

I have an Apache tapestry application which is running under Jetty server. As such port number of the running HTTP server can be obtained during a request from the request object. But I need to find ...
0
votes
1answer
143 views

ClassNotFoundException on TapestryFilter with Tynamo archetype

I'm setting up a new project with tynamo-archetype based on tynamo and Tapestry (lets call it division), and I'm facing an issue when running jetty in order to test it. I generated id with mvn ...
0
votes
0answers
95 views

tapestry+hibernate maven jetty:run fail

These are my pom.xml and project dependency:tree It should be a tapestry 5.2.6 app with mysql database and hibernate 3.6.0 final as a framework between the two. Libraries should be the version as ...
0
votes
1answer
245 views

Jetty Tapestry Hot Deployment = server restart?

could someone confirm that the tapestry hot deployment with Jetty is a: "scan the project for changes and restart the server?" Or is it: monitor changes and replace new files on server, but do not ...
1
vote
2answers
160 views

Using “Persist” annotation in Tapestry is causing Problems with RunJettyRun

I am going through the Tapestry beginner tutorial at: http://tapestry.apache.org/tapestry-tutorial.html I just downloaded the template project and tried running it as is. The problem is adding the ...
2
votes
1answer
2k views

Cannot initialize context because there is already a root application context present

My project uses tapestry 5.3.0,spring 3.0.6.RELEASE,hibernate 3.6.8.FINAL and maven.When I intruct jetty to start the project with mvn jetty:run, I get the following: 2011-12-13 ...
0
votes
3answers
601 views

Tapestry webapp with embedded Jetty

How can I configure a Tapestry5 project to run standalone (via java -jar) with embedded Jetty? I'm looking for a short "recipe" regarding Tapestry5, Jetty, configuration of servlets/ handlers/ ...
1
vote
2answers
494 views

Jetty in eclipse - loads static content from .war

I'm running Jetty from within Eclipse, installed with the Jetty Server Adaptor. I'm building a Tapestry app, and live class reloading works great. However, changes to static assets, such as images and ...
0
votes
1answer
645 views

Log4j, Tapestry 5.1, Stand-Alone Jetty 6 not playing along?

up to this point I have been developing a Tapestry 5.1.0.5 web-app using Maven goals to compile/package/execute the application. I used the mvn jetty:run goal to run the Jetty maven plugin. This ...
3
votes
4answers
3k views

Setting up Jetty in Eclipse

I'm trying to follow a tutorial on Tapestry. (http://tapestry.apache.org/tapestry5.1/tutorial1/env.html) The tutorial recommends Jetty 5.1 so I can use a plugin called JettyLauncher to run Jetty ...
3
votes
3answers
5k views

Getting maven to start jetty (Tapestry Tutorial)

I'm trying to work through the Tapestry tutorial. I think I got everything set up right and so far so good but I get to the part where the tut rather glibly states: Change into the newly created ...