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 at built-impl.xml
is
<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>