Myeclispe下struts-config.xml文件无法图形界面打开

1.今天更改web.xml文件不小心误删了下面的配置文件,导致出现如图的错误

<servlet-mapping>

<servlet-name>action</servlet-name>

<url-pattern>*.do</url-pattern>

</servlet-mapping>

2.虽然在网上搜索,更换工作空间,未能凑效,因为错误原因不一样吧,后来新建了项目,比较生成的web.xml文件与现在的区别,发现问题所在。

时间: 2024-12-14 15:35:14

Myeclispe下struts-config.xml文件无法图形界面打开的相关文章

MyBatis2:config.xml文件

前言 前一篇文章,讲了MyBatis入门,讲到了MyBatis有两个基本的配置文件,一个用来配置环境信息,一个用来写SQL语句.前者我把它命名为config.xml,config.xml的内容是: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "htt

Android项目中的config.xml文件 “config.xml”

Android应用程序需要保存一些配置时,可以将这些配置项放置到values/config.xml文件中. 实例分析: <?xml version="1.0" encoding="utf-8"?> <!-- /* ** Copyright 2009, The Android Open Source Project ** ** Licensed under the Apache License, Version 2.0 (the "Lice

android XMl 解析神奇xstream 一: 解析android项目中 asset 文件夹 下的 aa.xml 文件

1.下载工具 xstream 下载最新版本地址: https://nexus.codehaus.org/content/repositories/releases/com/thoughtworks/xstream/ 下载完成后 把jar包导入到自己的android项目中 2.asset 文件夹 下的 aa.xml 文件 <?xml version="1.0" encoding="UTF-8"?><product>    <name>

Maven出现User setting file does not exist ...\.m2\setting.xml的问题解决(同时也解决用户.m2目录下无setting.xml文件)

如果Eclipse中出现User setting file does not exist ...\.m2\setting.xml这样的问题,解决方法如下: 1.拷贝%M2_HOME%/conf/settings.xml的文件到%USER_HOME%/.m2/settings.xml中即可. 经过研究,同时也发现,在Maven安装好之后,%USER_HOME%/.m2目录下是不存在settings.xml的.而通过官方说明找到了答案http://maven.apache.org/settings.

Idea在src下不能编译XML文件

IDEA编译XML文件,如果需要在src下编译就需要在maven配置中加如下配置: 1 <build> 2 <finalName>SpringDemo</finalName> 3 <resources> 4 <resource> 5 <directory>src/main/java</directory> 6 <includes> 7 <include>路径/*.xml</include>

树莓派 ubuntu 系统下修改config.txt文件调整分辨率记录

参考 https://www.jianshu.com/p/99eea4db21c4 注:操作前最好先备份个 config.txt 文件 防止悲剧 防止悲剧 防止悲剧 终端下 进入boot/config.txt sudo nano /boot/config.txt 找到并把#hdmi_group=1改成 hdmi_group=2 然后把#hdmi_mode=1改成 hdmi_mode=28 注:hdmi_mode=28 根据自己的需要来调整  config.txt文件有列出对应的参数的分辨率  

windows 下 putty 登陆服务器 显示matlab图形界面

本文需要下载 putty.exe 和 pscp.exe :http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html Xming 主程序和字体: https://sourceforge.net/projects/xming/ 一.putty 的使用 1. 连接服务器 下载 putty,无需安装直接运行 putty.exe 进入下面的界面: 按照上图所示: 1 中输入服务器 ip 地址:(也可以输入 [email protecte

解析ASP,NET MVC 中 web.config XML文件 取出数据库类型

/// <summary> /// 解析web.config 查询dbType类型 /// </summary> private static void SetDBType() { #region 解析web.config 查询dbType类型 string strPath = HttpContext.Current.Server.MapPath("/") + "Web.config"; XmlDocument doc = new XmlDo

批量读文件为一个String(一个文件夹下的大量xml文件)

String folder =  "/nasapp/datamerger/xmls/ " ; File file = new File(folder); if(!file.exists()){ file.mkdir(); } File[] files = file.listFiles(); for(File f:files){ try { if (f.isFile() && f.exists() && "xml".equals(f.g