我正在使用Apache Struts2和Hibernate开发一个应用程序。我正在使用Apache Tomcat应用程序服务器。突然我注意到我的服务器正在不断打印这些行
#pragma pack(8)
在此间隔期间,我的网页运行时出现了挂起应用程序的迹象。但是2分钟后我发现tomcat停止并显示浏览器
WARNING: No configuration found for the specified action: 'addProject' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
Apr 12, 2016 2:30:23 PM org.apache.struts2.components.ServletUrlRenderer warn
WARNING: No configuration found for the specified action: 'addProject' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
Apr 12, 2016 2:30:23 PM org.apache.struts2.components.ServletUrlRenderer warn
WARNING: No configuration found for the specified action: 'studentMailbox' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
Apr 12, 2016 2:30:23 PM org.apache.struts2.components.ServletUrlRenderer warn
WARNING: No configuration found for the specified action: 'studentMailbox' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
Apr 12, 2016 2:30:23 PM org.apache.struts2.components.ServletUrlRenderer warn
WARNING: No configuration found for the specified action: 'addProject' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
Apr 12, 2016 2:30:24 PM org.apache.struts2.components.ServletUrlRenderer warn
请建议我一个解决方案。 提前谢谢。
答案 0 :(得分:0)
产生此异常背后可能有任何原因。其中让我们首先集中精力关注可能导致此例外的2点。
首先检查struts.xml文件是否位于项目中的适当位置。因为如果Struts2无法加载struts.xml文件,则可能会发生此异常。
第二,如果你已经使用过,请不要在struts.xml文件中使用namespace属性。
请参阅以下链接以更好地理解命名空间: http://struts.apache.org/docs/namespace-configuration.html