Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
8answers
7k views

Appending files to a zip file with Java

I am currently extracting the contents of a war file and then adding some new files to the directory structure and then creating a new war file. This is all done programatically from Java - but I am ...
5
votes
2answers
407 views

Best way to deploy large *.war to tomcat

During development I frequently have to deploy a large war-file (~45 MB) to a remote test server, normally I copy the file with scp to the server. The WEB-INF/lib folder makes up the largest part of ...
4
votes
1answer
173 views

Producing a WAR file from a django project with SQLite

I have a django project (a django module/app some other modules that are used from the django one) that uses SQLite. This project is for a University course and now I am asked to supply it in such a ...
4
votes
6answers
605 views

Advantages/Disadvantages to exploded wars

An answer to a question I read today suggested deploying an application as an exploded WAR. It got me thinking. Every deployment I've ever done to a JBoss/Tomcat has been with a a WAR/EAR file. At ...
2
votes
1answer
1k views

Some necessary libraries are missing in WAR-File after export from Eclipse - why?

I took over a project of a college which contains some web services and by exporting the project as WAR-file some libraries are contained in the file (e.g. Axis2) and some aren’t (hibernate, JDBC ...
1
vote
1answer
103 views

how to make a dynamically loaded plugin web application-aware

I decided to implement dynamic class loading in my glassfish web application, as a way of trying it out and to support small plugins that could be loaded and executed by the web app at runtime. I ...
0
votes
2answers
39 views

“play war yabe -o yabeApp --zip” doesn't work on Debian 6

My problem: I try to "war" a play! framework app under Debian6: In a shell, I use: (i am under debian6 without any serverx) play war yabe -o yabeApp --zip and play say that all is ok Listening ...
0
votes
3answers
589 views

mvn package command doesn't run successfully after mvn clean command if done from command prompt

Hi I get a weird error when I run mvn package command from the command line after executing mvn clean command. The error is a compilation failure error. This is a trace: annotations are not ...
0
votes
2answers
634 views

Why no option to import a WAR file into Eclipse?

I have a WAR file for a Java project but when I try to import it into Eclipse, the only option is for archive files such as tar, zip, jar - nothing for war. Is this only an option in certain editions ...
0
votes
1answer
829 views

Get relative path to XML file from a non-servlet class in a WAR

I have an XML file which I need to read and load the data in memory every time the app launches. So, while the project was in Eclipse, i hardcoded the path: "/path/to/xml" but when I create the WAR, ...
0
votes
1answer
140 views

Files inside WAR appear double

I'm using ANT to build the WAR file for my Java web app. However, when I look inside the WAR file I see every file appear twice (not the folders, just the files). When I extract the WAR file there are ...
-2
votes
0answers
18 views

How run tomcat without show cmd window

I'm using tomcat by first time as a web application container, I've some questions about Tomcat: Should I create a war file and then use it for my application? How set my application as the ...