如果报错误:org.apache.jasper.JasperException: File "/struts-tags" not found
在tomcat server.xml文件中配置:
<Host name="项目名称或者是网址" appBase="不填"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path="/" docBase="如果项目是在服务器上,就是项目在tomcat中的位置:如D:\Tomcat 6.0\webapps\erciso(erciso为我的项目名称)" reloadable="true"
caseSensitive="false" debug="0"></Context>
</Host>
这个问题可能是有很多原因造成的,我就我犯得错误给出解决办法:
我是把server.xml中的“docBase”与“appBase”的值设置成一样了,才铸成了如此大错,实际上“appBase”的值应该是工程放置的目录路径,如“c:\tomcat\webapps”;而“docBase”的值应该是工程名,如“myproject”,当然path的值要指定为“”,否则某些东西还会出错的。
像这样应该不会有问题了。 这个还能解决包括找不到 jstl 方法相同。
分享到:
相关推荐
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN" "http://struts.apache.org/dtds/struts-2.5.dtd"> <struts> <constant name="struts.devMode" value="true" /> ...
MySQL数据库在启动时可能会遇到各种错误,其中一种常见的报错是"File ./mysql-bin.index not found (Errcode: 13)"。这个错误通常表明MySQL无法找到它的二进制日志索引文件(mysql-bin.index),并且错误代码13通常...
var fileStream = new FileStream("pathToYourFile", FileMode.Open); content.Add(new StreamContent(fileStream), "fileName", "fileName"); // 发送请求 var response = await client.PostAsync(...
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.enable.DynamicMethodInvocation" value="false"/> ...
信息安全、网络安全在“互联网+”始终...该漏洞的影响范围:Struts2.3.5 到 Struts2.3.31 以及 Struts2.5 到 Struts2.5.10。 修复方式:更新至Struts 2.3.32 或者 Struts 2.5.10.1 或 使用第三方的防护设备进行防护。
根据提供的文件信息,文档标题“ubuntu-version `GLIBC-2.25` not found.pdf”以及描述“ubuntu_version `GLIBC_2.25` not found”,明确指出在Ubuntu系统上遇到了GLIBC 2.25版本未找到的问题。GLIBC(GNU C Library...
右键点击项目名称,选择 "MyEclipse" -> "Add Struts Capabilities...",然后选择 Struts 配置文件和 URL 模式,我们选择 "*.do"。最后,点击 "Finish" 按钮。 现在,我们的项目结构类似于图 3。在这个结构中,我们...
11:43 Emulator: [5984]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at D:\AndroidSDK\emulator\lib64\qt\lib 11:43 Emulator: Could not launch 'D:\AndroidSDK\emulator/qemu/...
DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd"> <web-app> <display-name>StrutsBlankApplication</display-name> <!-- ...
### 利用Myeclipse快速开发Struts应用程序详解 #### 一、概述 本文旨在通过一个简单的用户登录程序,向初学者展示如何使用MyEclipse的Struts Designer(图形化开发环境)快速构建一个基于Struts框架的应用。该示例...
Valheim专用服务器具有Web界面的易于安装的Valheim专用服务器Docker容器。安装在某个目录中创建具有以下内容的文件docker-compose.yml ,然后在该目录中运行docker-compose up -d 。 version : " 3 "services : ...
DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd"> <struts-config> <form-beans> <form-bean...
2. **欢迎文件**:`<welcome-file-list>` 用于定义用户访问应用时默认显示的页面。若需调用 Struts Action,可以使用 `<global-forwards>` 配置全局转发到特定 Action: ```xml <welcome-file-list> <welcome-...
- 打开Eclipse,选择"File" -> "New" -> "Dynamic Web Project",填写项目名称,例如"Struts2Test",选择Java EE版本(至少为5或更高)。 3. **配置项目结构**: - 在项目中创建WEB-INF目录,然后在该目录下创建`...
配置Tomcat服务器,部署项目,然后通过浏览器访问`userLogin.jsp`进行测试。根据Struts的工作流程,用户输入登录信息,ActionForm将数据传递给Action,Action处理后控制转向相应的JSP页面。 通过以上步骤,我们就...
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.action.extension" value="ph"/> <constant name="...
在本文中,我们将深入探讨如何在 Struts 1.3 版本中配置多应用模块,这对于大型项目尤其重要,因为它允许我们把不同的功能模块分离到单独的应用中,提高代码的可维护性和可扩展性。 首先,让我们了解 Struts 框架的...
DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd"> <struts-config> <data-sources/> <form-beans/> ...
- Key: `-//Apache Software Foundation//DTD Struts Configuration 2.0//EN` 确认设置后,IDE会使用本地的DTD文件进行验证,从而消除错误。 在处理这类问题时,确保你的Struts2库版本与使用的DTD文件相匹配是...