在Netbeans7.4中部署项目时它没有在Apache Tomcat 7.0.14中部署项目,它显示如下
E:\Project\atom\nbproject\build-impl.xml:1111: The module has not been deployed.
See the server log for details.
BUILD FAILED (total time: 1 minute 22 seconds)
行号:1111 在built-impl.xml
是
<nbdeploy clientUrlPart="${client.urlPart}" debugmode="false"
forceRedeploy="${forceRedeploy}"/>
为了解决上述问题,我已关注此链接
我的context.xml
文件包含
<?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/atom"/>
并且所有权限都是为普通用户设置的
如何解决此问题,此错误的其他原因可能是什么
编辑:现在安装了Netbeans 8.0和Apache Tomcat 8然后也显示了我正在使用的相同问题struts2.3.15
和hibernet3.6
我的web.xml
内容是
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" 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/web-app_3_0.xsd">
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class> business.schedular.QuartzSchedulerListener </listener-class>
</listener>
<session-config>
<session-timeout>
120
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>pages/login.jsp</welcome-file>
</welcome-file-list>
</web-app>