Hello,
I’m new to MyEclipse and am trying to import existing projects into the IDE. I believe that the existing project layout is not the typical format that MyEclipse is expecting.
After a project is deployed using the MyEclipse functionality, the basedir of the war file created is not what my application is expecting. Meaning, when I browse to http://localhost:8080/projectname, I am seeing a directory listing rather than my index.jsp page. (Note: index.jsp is located in the “www” directory)
For example, my build.xml file has this under my “deploy” target:
<war
basedir="www"
warfile="${build.dir}/${project.distname}.war"
webxml="${webinf.dir}/web.xml">
<exclude name="WEB-INF/${build.dir}/**"/>
<exclude name="WEB-INF/src/**"/>
<exclude name="WEB-INF/web.xml"/>
</war>
Is there a way to make the automated deployment recognize that the base directory should be “www”?
If not, am I correct to assume that debugging of JSP’s will not be available unless the automated deployment process is run?