我正在编写一些struts教程,这是我正在使用的其中一个: http://www.vaannila.com/struts/struts-example/struts-login-page-example-1.html
我下载了该页面底部的“source + lib”链接,我将Example2文件夹从zip复制到tomcat下的webapps文件夹,所有内容都按照宣传的方式工作。
但是,当我尝试使用相同的Example2文件夹并将其复制到我的jboss 4.2.3 default \ deploy文件夹时,它不起作用。很抱歉这样一个新手问题,但只是想知道是否有人有任何建议。
这是控制台错误跟踪的开始:
9:37:57,968 ERROR [URLDeploymentScanner] Incomplete Deployment listing: --- Packages waiting for a deployer --- org.jboss.deployment.DeploymentInfo@ae05c37c { url=file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/ApacheLicense.txt } deployer: null status: null state: INIT_WAITING_DEPLOYER watch: file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/ApacheLicense.txt altDD: null lastDeployed: 1258850277875 lastModified: 1258850277875 mbeans: org.jboss.deployment.DeploymentInfo@2fc10fd3 { url=file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/WEB-INF/classes/com/vaannila/ApplicationResource.properties } deployer: null status: null state: INIT_WAITING_DEPLOYER watch: file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/WEB-INF/classes/com/vaannila/ApplicationResource.properties altDD: null lastDeployed: 1258850277875 lastModified: 1258850277875 mbeans: . . .
所以也许我需要一些不同的配置来在Jboss中部署struts应用程序?
感谢。
答案 0 :(得分:2)
您的应用程序需要.war
扩展名,即使在进行“爆炸式”部署时也是如此。将Example2
目录重命名为Example2.war
(即,您最终会得到C:/jboss-4.2.3.GA/server/default/deploy/Example2.war
)。