Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you deploy a WAR that's inside an EAR as the root (/) context in Glassfish?

I have an EAR file that contains two WARs, war1.war and war2.war. My application.xml file looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<application version="5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd">
  <display-name>MyEAR</display-name>
  <module>
    <web>
      <web-uri>war1.war</web-uri>
      <context-root>/</context-root>
    </web>
  </module>
  <module>
    <web>
      <web-uri>war2.war</web-uri>
      <context-root>/war2location</context-root>
    </web>
  </module>
</application>

This results in war2.war being available on http://localhost:8080/war2location, which is correct, but war1.war is on http://localhost:8080// -- note the two slashes.

What am I doing wrong?

Note that the WARs' sun-web.xml files get ignored when contained in an EAR.

like image 311
Marius Marais Avatar asked Feb 04 '23 13:02

Marius Marais


2 Answers

In Glassfish 3.0.1 you can define the default web application in the administration console: "Configuration\Virtual Servers\server\Default Web Module". The drop-down box contains all deployed war modules.

The default web module is then accessible from http://localhost:8080/.

like image 169
jiriki Avatar answered Apr 07 '23 13:04

jiriki


This seems to me as a bug in the glassfish application server. It should work as it is already defined your application.xml file.

Maybe you could try the following:

<context-root>ROOT</context-root>
like image 32
Panagiotis Korros Avatar answered Apr 07 '23 12:04

Panagiotis Korros