Tagged Questions

Web Application Archive - Is Jar file used to distribute JavaServer Pages, Java Servlets, Java classes, XML files, tag libraries and static Web pages (HTML and related files) that together constitute a Web application.

learn more… | top users | synonyms

34
votes
6answers
2k views

Running Clojure web applications in production

I'm deeply in love with Clojure, and Compojure seems like a neat web framework. But it all fell apart when I wanted to deploy my application on a regular application server like Tomcat as a WAR. I ...
17
votes
8answers
8k views

Executable war file that starts jetty without maven

I'm trying to make an "executable" war file (java -jar myWarFile.war) that will start up a jetty webserver that hosts the webapp contained in the war file I executed. I found a page that described ...
12
votes
7answers
13k views

How to create war files

What are the best practices of creating war files (using eclipse) to run on tomcat? tutorials, links, examples are highly appreciated.
10
votes
4answers
1k views

Web-application configuration outside or inside war file?

A web application usually has at least one configuration file, that contains jdbc configuration and other settings. You can put such file(-s) inside a .war file or outside it. What are the cons and ...
8
votes
1answer
320 views

Only copy modified files in maven-war-plugin

I'm currently using maven 3.x with the maven-war-plugin. For developer builds I would like to be able to use the war:exploaded goal, but only copy resources that have changed. Is there a way to do ...
8
votes
5answers
4k views

How do I run a class in a WAR from the command line?

I have a Java class which has a main and I used to run as a standalone app from the command line e.g. java -jar myjar.jar params I needed to repackage the code to run under apache and all my code, ...
8
votes
4answers
11k views

Maven WAR dependency

I am writing a project for accepatance testing and for various reasons this is dependent or another project which is packaged as a WAR. I have managed to unpack the WAR using the ...
7
votes
8answers
812 views

Java war vs. jar - what is the difference?

What is the difference between a .jar and a .war file? Is it only the file extension or is there something more?
7
votes
2answers
365 views

NPE installing a Clojure WAR in Tomcat, restart fixes

I'm attempting to deploy a WAR file written in Clojure to Tomcat 6 on Debian Lenny. I'm getting a NullPointerException when I copy it into the webapps dir (both for the first type and when ...
7
votes
5answers
2k views

How do you manage embedded configuration files and libraries in java webapps?

I'm currently working on a j2ee project that's been in beta for a while now. Right now we're just hammering out some of the issues with the deployment process. Specifically, there are a number of ...
6
votes
4answers
209 views

Tomcat 5.5: .jar not releasing on .war rebuild

Synopsis I am attempting to export a WAR to my webapps folder but everytiime I update the war it deletes all of the content of the webapp minus /WEB-INF/lib/struts.jar System info Windows 2K3 ...
6
votes
3answers
1k views

Jetty Run War Using only command line

Is it possible to use only the command line to Run jetty with only a specified war file and context path. Something like: java -jar $jettyHome/start.jar -Dwar.location=myApp.war -DcontextPath=/myApp ...
6
votes
4answers
2k views

Ignore SVN files when exporting a WAR file from Eclipse?

I have a Dynamic Web Project in Eclipse. I can pack it to a WAR by right-clicking the project and choosing Export > WAR File. This creates the WAR file as expected and it works. The problem is that ...
6
votes
3answers
3k views

JavaMail not sending Subject or From under jetty:run-war

Has anyone seen JavaMail not sending proper MimeMessages to an SMTP server, depending on how the JVM in started? At the end of the day, I can't send JavaMail SMTP messages with Subject: or From: ...
6
votes
22answers
22k views

JBoss5: Cannot deploy due to java.util.zip.ZipException: error in opening zip file

I have a web client and a EJB project, which I created with Eclipse 3.4. When I want to deploy it on Jboss 5.0.1, I receive the error below. I searched a lot but I wasn't able to find a solution to ...
6
votes
5answers
11k views

How do I automatically export a WAR after Java build in Eclipse?

I have a J2EE project in Eclipse 3.2 and at the end of every build I want to automatically create and deploy a WAR file. At the moment I have to do this by hand which is 5 or 6 mouse-cliks and it ...
6
votes
3answers
1k views

Access session of another web application

Is it possible to configure two separate web apps (WAR) in a J2EE application (EAR) to access a shared session context? Further info: I ended up creating a shared class from the EAR which stored the ...
5
votes
1answer
145 views

Why use an ear instead of a war?

I read this and this which are somewhat related to my question. But I came across this article that says that EJBs can be packaged in a war file. If this is the case, why is there a need for an ear? ...
5
votes
2answers
528 views

maven WAR plugin skips resources?

Now this is downright bizarre: I have a number of folders/files I want copied into my WAR, here's the relevant part of the POM: <plugin> ...
5
votes
5answers
142 views

how to make changes on a project and running it through IDE without deploying it on server

I want to know how I can make changes in my code and run it on server directly from my eclipse IDE in place of converting my project every time to war file and deploy it on server. I don't want to ...
5
votes
6answers
1k views

How to merge wars into one?

In our company, we have a number different modules constructed as separate wars. Each client can pick and choose module he wishes to buy. Since all modules share same session, security context etc, ...
5
votes
5answers
3k views

How can I store JEE configuration parameters outside of an EAR or WAR?

I want to store configuration for a web project outside of the web project (ear/war file). The application shouldn't know in which container it's running (WebSphere/JBoss etc.). What is the best way ...
4
votes
1answer
145 views

Packaging a Play! application straight into a WAR

I am using Play's war command to package up my application into a WAR file for deployment, like so: play war mydir -o myapp --zip (Discovering --zip has sure saved me a lot of time!) This command ...
4
votes
3answers
2k views

create a .war file from gwt-project

How do I create a .war-file from my gwt-project in eclipse?
4
votes
2answers
295 views

Clojure + Compojure + Maven application doesn't work in Tomcat

I'm working on a simple web application written in Clojure, using the Compojure web application framework and Maven. This is a simplified version of my servlet: (ns core (:use compojure.core ...
4
votes
1answer
946 views

Where do Spring configuration files go in a maven WAR module?

I've looked at a bunch of sample project and I can't seem to tease out a common best practice. I've seen Spring bean files sometimes go in the web-app/WEB-INF directory. I've seen this in ...
4
votes
2answers
1k views

Maven String Replace of Text Web Resources

I have a Maven web application with text files in src/main/webapp/textfilesdir As I understand it, during the package phase this textfilesdir directory will be copied into the ...
4
votes
2answers
2k views

Add subversion revision to war manifest using maven2

I want to find a maven native (i.e. without calling external programs) to inject the svn revision in the war manifest. Does anybody know a way to do that? I found mention to how to add the ...
4
votes
2answers
912 views

`sbt package` results in huge war file - how to make it smaller?

I'm currently using SBT to manage my Lift project. I'd like to deploy it, but when I run 'sbt package' it produces a 60MB war file. This seems pretty large - are there ways I could cut down the size? ...
4
votes
3answers
890 views

Glassfish war lifecycle question

What is the proper way to redeploy a new version of a running app in glassfish? I have a WAR running, and I've made changes. I thought doing an undeploy + deploy might be the right thing, but ...
4
votes
3answers
2k views

Hot deploying changes with Netbeans, Maven, and Glassfish

Recently we migrated from using ant to maven. Within Netbeans, I used to edit and save html, xhtml, javascript, css files in the WAR and almost immediately the changes were available on the server. ...
4
votes
4answers
1k views

WAR files and Subversion

How should I handle WAR files (using GWT) along with Subversion in Eclipse? The problem atm. is when adding the war folder to SVN, it includes all the compiled code, which I don't have a option to ...
3
votes
2answers
94 views

How to build a simple war file with sbt?

I'm trying to make a webapp using Scala and Apache Wicket and am not sure how to structure my project and use SBT to build a war file. What directory structure should I use and how can I have SBT ...
3
votes
1answer
471 views

Class loading isolation issue (or How to use JPA2 on JBoss 5.x ?)

I would like JBoss to use only the dependencies located in my war file. Each time I deploy this war file, JBoss still uses its own jars. Here is the jboss-web.xml I use : <?xml version="1.0" ...
3
votes
1answer
93 views

Java & Tomcat: Severe Error starting obfuscated app w/ hibernate inside

This is a little hard to explain.. I am using tomcat 6.0 to test deploy a WAR file. I'm using proGuard to obfuscate the WAR file. To use proGuard, all the com.*, org.* etc that would normally be in ...
3
votes
2answers
47 views

How can I locate a non-Java resource in a WAR at runtime?

I need to run a shell script at runtime from a WAR that I run on Tomcat. Thus, I've placed my script theScript.sh in my src/main/resources directory (because, yes, I use Maven). This directory is in ...
3
votes
1answer
32 views

Maven puts JAR-file into package, that is not diplayed when running mvn dependency:list/tree -Dverbose=true

We have an issue where hibernate-validator-3.0.0.ga.jar gets put into a warfile and due to a known incompatibility with a different hibernate-core version causes exceptions. The problem is, that ...
3
votes
1answer
83 views

Does Tomcat occasionally redeploy WARs on its own?

I have a webapp that is deployed as a WAR file to a Tomcat 6 server. It stores some data in a directory inside the app itself. These files get overwritten when a new version of the app is deployed, ...
3
votes
1answer
95 views

Updating files in a WAR/JAR reguardless of their date

I have an ANT task that uses the jar task to update a few files inside of a previously built war. [The files are processed between compilation of a WAR and deliverable.] How can I get ANT to update ...
3
votes
3answers
431 views

How to run java class file inside the war file

i am having war file called Sample.war. in this war file i have the main class called "Maintest" .i want to run or execute the Maintest class from out side the war .how to do this
3
votes
2answers
113 views

Is it secure to have a configuration file outside a deployed java war file?

Specifically, is it more or less secure having the file on the outside? This is assuming you put the configuration files in the root directory (of the web server). And that there are only standard ...
3
votes
7answers
1k views

Is there are way to patch jar files?

Suppose I sent a large jar or war file to someone. Could I lately just change one small section and send that to him? Suppose I just changed one class file. I recompiled the java for into a class ...
3
votes
4answers
3k views

Using ant war task to include files in WEB-INF directory

I'm using ant to build my web-app. I'm sure this is simple but I can't figure out how to tell ant to create a specific folder in the WEB-INF directory and copy files to it. My ant war task looks like ...
3
votes
1answer
277 views

Right way for handling a java web application startup error

I'm currently writing a java web application that performs specific checks at startup. Example, checking that the configuration file exists and defines all the required setting variables. I placed ...
3
votes
3answers
1k views

Tomcat not autodeploying war file

I followed the following steps Shutdown Tomcat Deployed a war file with a timestamp of 1st December Start Tomcat - This created the exploded directory for the deployed war file. Stop Tomcat ...
3
votes
3answers
564 views

maven makes war with two versions of the same jar

Maven puts both axis-1.3.jar and axis-1.4.jar to WEB-INF/lib of my war. Can someone explain how to tell it to use only axis-1.4.jar? <project xmlns="http://maven.apache.org/POM/4.0.0" ...
3
votes
1answer
550 views

Is there any way to tell maven war plugin to use folder other than target/classes

when i use maven war plugin, by default, this plug-in will copy all class files(*.class) from target/classes to {warfile}/web-inf/classes. The problem is if i have compiled classes (*.class) that ...
3
votes
2answers
391 views

Grails IncompatibleClassChangeError

I deploy a war made with "grails war" to a jetty server. As far as I can determine, Grails builds with Sun JDK 1.6.0_17-b04 and jetty runs on Sun JDK 1.6.0.16 (both on linux). 2010-08-18 ...
3
votes
1answer
664 views

Tomcat unable to find jsp in war file

I recently switched one of my static html files to a Spring controller that uses a JSP to render its view. I use jetty to test locally and local testing shows the page rendering fine. Upon deploying ...
3
votes
3answers
1k views

When is it appropriate to use an EAR and when should your apps be in WARs?

We have many Spring web applications to make on a WebLogic server and are curious about when WARs should go in an EAR and when they should just exist as WARs. Occassionally, the WARs will need to ...

1 2 3 4 5 10