一个小迷惑!!

我是一个学生,刚刚接触j2EE,我按照该网站上的指导安装jboss+tomcat时,发现jboss-tomcat目录下根本没有jboss这个目录,所以我就在环境变量的设置时直接设置:jboss_dist=d:\jboss-tomcat,但在执行ant intro-interest-ear时失败,显示原因当然就是jboss_dist=d:\jboss-tomcat这个设置错误,提示我将其设置在jboss的子目录下,但我不知道该设在那里??????

我下载的是jboss和tomcat的绑定版,解压后的目录有:bin,client,docs,lib,server,tomcat-4.1.x却没有jboss????

Since you are using JBOSS and TOMCAT bounded verion, there is no jboos directory under your installatin directory. Go to
/bin directory and type run.bat/run.sh, you will start both TOMCAT adn JBOSS. All configuration infomation is stored at
server/default directory. You can simply hot deploy your .war, .jar or ear by dropping them inside server/default directory. Remove them for undeployment. You can also access JMX console by http://localhost:9080/jmx-console.

Hope this helps.

To be more specific:
server/default/conf directory store core Jboss configuration info.
server/default/deploy is the directory to deploy you J2EE application

server/default/log stores system logging info.

thanks