0
我使用Tomcat 8,Java 7的MyEclipse的2014年和項目性質是動態的webmodule 3.1 Maven支持使用如何熱點在MyEclipse中在Apache Tomcat上部署8碼2014
的javax
在我的web.xml IM.faces.PROJECT_STAGE發展
javax.faces.FACELETS_REFRESH_PERIOD 1
和我autodeploymnet選項是
仍即時通訊無法獲得結果,如即時通訊改變我的XHTML頁面或方法正文未部署自動。每次我需要重新啓動我的服務器。
,這裏是我的web.xml
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Setting up application context used for spring configuration -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>none</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<!-- welcome file for Application -->
<welcome-file-list>
<welcome-file>workflow</welcome-file>
</welcome-file-list>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<context-param> <param-name>javax.faces.FACELETS_REFRESH_PERIOD</param-name>
<param-value>1</param-value>
</context-param>
我沒有看到這裏的問題。確保你在調試模式下運行,也許嘗試將刷新週期更改爲0.同時發佈完整的web.xml可能會使其他人發現任何問題。 –
thnx工作區已損壞 – TalibGill