On Fri, 22 Jun 2001, Richard Bottoms wrote:
> Can someone do a simple JSP only app deployed using an .EAR file. I want to
> deploy an .EAR file with only JSP pages in it, no calls to EJB's or page
> redirects.
Just create an ear file with only web modules. An Enterprise ARchive does
not have to contain EJB jars. The JSPs must be packed in Web ARchives
though. The application.xml file could look something like the one below.
<application>
<module>
<web>
<web-uri>MyJSPs.war</web-uri>
<context-root>SomeContextRoot</context-root>
</web>
</module>
</application>
-----------------------------------------------------------------------
Per Lewau ([EMAIL PROTECTED])
"Why waste time learning, when ignorance is instantaneous?"
- Hobbes
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user