`

项目部署到外网发生File "/struts-tags" not found错误

 
阅读更多
如果报错误: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 方法相同。
分享到:
评论

相关推荐

    struts2配置2.5版

    "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN" "http://struts.apache.org/dtds/struts-2.5.dtd"&gt; &lt;struts&gt; &lt;constant name="struts.devMode" value="true" /&gt; ...

    MySQL 启动报错:File ./mysql-bin.index not found (Errcode: 13)

    MySQL数据库在启动时可能会遇到各种错误,其中一种常见的报错是"File ./mysql-bin.index not found (Errcode: 13)"。这个错误通常表明MySQL无法找到它的二进制日志索引文件(mysql-bin.index),并且错误代码13通常...

    c#下post multipart/form-data和JSON

    var fileStream = new FileStream("pathToYourFile", FileMode.Open); content.Add(new StreamContent(fileStream), "fileName", "fileName"); // 发送请求 var response = await client.PostAsync(...

    struts框架搭建

    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"&gt; &lt;struts&gt; &lt;constant name="struts.enable.DynamicMethodInvocation" value="false"/&gt; ...

    S2-045 struts2-core-2.3.32.jar 相关jar包,测试可用

    信息安全、网络安全在“互联网+”始终...该漏洞的影响范围: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.pdf”以及描述“ubuntu_version `GLIBC_2.25` not found”,明确指出在Ubuntu系统上遇到了GLIBC 2.25版本未找到的问题。GLIBC(GNU C Library...

    一个简单的Myeclipse+Struts开发登陆的JSP例子

    右键点击项目名称,选择 "MyEclipse" -&gt; "Add Struts Capabilities...",然后选择 Struts 配置文件和 URL 模式,我们选择 "*.do"。最后,点击 "Finish" 按钮。 现在,我们的项目结构类似于图 3。在这个结构中,我们...

    SDK文件下缺少emulator-2

    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/...

    jsp大学教程代码

    DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd"&gt; &lt;web-app&gt; &lt;display-name&gt;StrutsBlankApplication&lt;/display-name&gt; &lt;!-- ...

    利用Myeclipse快速开发struts应用程序

    ### 利用Myeclipse快速开发Struts应用程序详解 #### 一、概述 本文旨在通过一个简单的用户登录程序,向初学者展示如何使用MyEclipse的Struts Designer(图形化开发环境)快速构建一个基于Struts框架的应用。该示例...

    valheim-server:带有Web界面的Valheim专用服务器Docker容器

    Valheim专用服务器具有Web界面的易于安装的Valheim专用服务器Docker容器。安装在某个目录中创建具有以下内容的文件docker-compose.yml ,然后在该目录中运行docker-compose up -d 。 version : " 3 "services : ...

    Struts入门--按步骤一步步来就可以了

    DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd"&gt; &lt;struts-config&gt; &lt;form-beans&gt; &lt;form-bean...

    struts1[1].2配置详细.doc

    2. **欢迎文件**:`&lt;welcome-file-list&gt;` 用于定义用户访问应用时默认显示的页面。若需调用 Struts Action,可以使用 `&lt;global-forwards&gt;` 配置全局转发到特定 Action: ```xml &lt;welcome-file-list&gt; &lt;welcome-...

    struts2 在eclipse 配置成功

    - 打开Eclipse,选择"File" -&gt; "New" -&gt; "Dynamic Web Project",填写项目名称,例如"Struts2Test",选择Java EE版本(至少为5或更高)。 3. **配置项目结构**: - 在项目中创建WEB-INF目录,然后在该目录下创建`...

    利用Myeclipse开发struts应用程序

    配置Tomcat服务器,部署项目,然后通过浏览器访问`userLogin.jsp`进行测试。根据Struts的工作流程,用户输入登录信息,ActionForm将数据传递给Action,Action处理后控制转向相应的JSP页面。 通过以上步骤,我们就...

    搭建EXTJS和STRUTS2框架(ext和struts2简单实例)

    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"&gt; &lt;struts&gt; &lt;constant name="struts.action.extension" value="ph"/&gt; &lt;constant name="...

    Struts 之旅 - 配置多应用模块

    在本文中,我们将深入探讨如何在 Struts 1.3 版本中配置多应用模块,这对于大型项目尤其重要,因为它允许我们把不同的功能模块分离到单独的应用中,提高代码的可维护性和可扩展性。 首先,让我们了解 Struts 框架的...

    Struts1.2实现MySQL数据库分页.txt

    DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd"&gt; &lt;struts-config&gt; &lt;data-sources/&gt; &lt;form-beans/&gt; ...

    struts.xml的错误解决办法

    - Key: `-//Apache Software Foundation//DTD Struts Configuration 2.0//EN` 确认设置后,IDE会使用本地的DTD文件进行验证,从而消除错误。 在处理这类问题时,确保你的Struts2库版本与使用的DTD文件相匹配是...

Global site tag (gtag.js) - Google Analytics