I'm not using any Eclipse plugins: I just wrote a class (I call it Main)
in the test sources folder and added Jetty 6.1.14 as a test dependency. My
Main class has code in its main() method:
Server server = new Server();
Connector connector = new SelectChannelConnector();
connector.setPort(80
I've hit this problem too, on a client's project using RunJettyRun.
The solution is to move classpath resources from src/main/java (or
equivalent) to src/main/resources (or equivalent) and add
src/main/resources as a class folder. Thiis keeps Eclipse from trying
to copy the files (from src/main/j
I had this same problem - but it was solved with the
useFileMappedBuffer=false solution. One difference was that I didn't change
/etc/webdefault.xml - I actually copied webdefault.xml into my project and
updated my pom file:
org.mortbay.jetty
maven-jett
Hi Inge,
one of our developers had the same issues (eclipse, jetty, maven) on
windows XP - we tried several configurations (including the disabled
jetty lock) without success. the problem disappeared after a fresh
install of windows xp; we could not get rid of the problem with in any
other wa
.
- Original Message -
From: "Inge Solvoll"
To: "Tapestry users"
Sent: Wednesday, 7 October, 2009 09:40:36 GMT +02:00 Athens, Beirut, Bucharest,
Istanbul
Subject: Re: Jetty lock on JS-files in classpath breaks eclipse autobuild
The file synch approach worked nicely.
The file synch approach worked nicely. But it would be nice to hear about
other and possibly better solutions, as this is a hack that is a bit
cumbersome to distribute among our developers...
My environment:
T5.1.0.5
Eclipse 3.4
Vista 64 bit
Java 1.6u17 64 bit
Jetty 6.1.12rc1
I have configured j
One option here is to put your non-Java resources into a folder,
src/main/resources, and mark that folder as a classes folder (not a
source folder). classes folder are simply added to the runtime path
with no copying. This is what I do.
On Tue, Oct 6, 2009 at 7:59 AM, Peter Stavrinides
wrote:
> W
What is your exact environment / configuration?
- Original Message -
From: "Inge Solvoll"
To: "Tapestry users"
Sent: Tuesday, 6 October, 2009 10:57:30 GMT +02:00 Athens, Beirut, Bucharest,
Istanbul
Subject: Jetty lock on JS-files in classpath breaks eclipse autobuild
Hi!
I'm having pr