struts1-求大神指导!!!程序错误

问题描述

求大神指导!!!程序错误

HTTP Status 500 - No action instance for path /ypServlet could be created


type Status report

message No action instance for path /ypServlet could be created

description The server encountered an internal error (No action instance for path /ypServlet could be created) that prevented it from fulfilling this request.


Apache Tomcat/6.0.13

解决方案

查看/ypServlet web.xml中对应配置是否正确。路径找不到!

解决方案二:

应该是这个/ypServlet没有对应servlet(action)或者这个名字你敲错了。

时间: 2024-11-18 09:17:17

struts1-求大神指导!!!程序错误的相关文章

C语言初学妹子求大神解决程序错误问题,求正解

问题描述 C语言初学妹子求大神解决程序错误问题,求正解 /*分别用while.do-while和for循环求:1!+2!+...+n!. 设计一个主界面,实现连续读入不同的n值并求解:*/ #include //用while实现 int main() { while(1) { int i=1,j=1,s=0,m=1; int n; printf("请输入n的值:n"); scanf("%dn",&n); if(n<1) break; else { s=

我是菜鸟,在window编程出现错误,求大神指导!!

问题描述 我是菜鸟,在window编程出现错误,求大神指导!! //头文件 #include #include #pragma comment(lib,"Winmm.lib") //宏定义 #define WINDOW_WIDTH 800//窗口宽度定义的宏,方便修改 #define WINDOW_HEIGHT 600//高度 #define WINDOW_TITLE L"[致我们永不熄灭的游戏开发梦想]GDI程序核心框架"//标题 //全局函数声明 HDC g_h

visual studio 2010-vs2010编译错误,求大神指导

问题描述 vs2010编译错误,求大神指导 各位好,一个简单的问题,我使用vs2010编译一个singleton的小程序,定义如下: class CLog { public: static CLog* getInstance() { if(0 == _instance) { _instance = new CLog; } return _instance; } protected: CLog(); ~CLog(); static CLog* _instance; }: CLog::CLog()

bean-使用SSH框架,出现BeanCreationException错误,纠结了两天了,求大神指导!

问题描述 使用SSH框架,出现BeanCreationException错误,纠结了两天了,求大神指导! org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'serviceActionBean' defined in ServletContext resource [/WEB-INF/bean.xml]: Cannot resolve reference to bean '

窗体-C#中如何添加FormClose事件 按了关闭,程序没有停止调试,求大神指导

问题描述 C#中如何添加FormClose事件 按了关闭,程序没有停止调试,求大神指导 刚开始学习C#窗体 做登录界面 在登录按钮设置了 连接一个成功提示,但是进去了按关闭的时候,窗体并没有停止运行,一直在调试,求该如何解决,希望大神们帮帮忙 private void button1_Click(object sender, EventArgs e) { if(textBox1.Text=="admin"&&textBox2.Text=="123")

windows-一个简单Windows程序无法链接,求大神指导,感谢

问题描述 一个简单Windows程序无法链接,求大神指导,感谢 // HelloWin.C 在客户区显示"你好 Windows 7" (c) Charles Petzold 1998 #include #pragma comment(libwinmm.lib"") LRESULT CALLBACK WinProc(HWND UINT WPARAM LPARAM); int WINAPI WinMain(HINSTANCE hInstance HINSTANCE hP

c语言基础-真的很着急,大一学生党,求大神指导写一个c语言拨号程序

问题描述 真的很着急,大一学生党,求大神指导写一个c语言拨号程序 能显示出通讯录中所有人姓名,当选中某个姓名时,屏幕上模拟打字机效果依次显示出此人的电话号码中的各个数字,并伴随相应的拨号声 解决方案 http://zhidao.baidu.com/link?url=svF4fjRTNuBmCJyCiRipzB_21UO5zvNc0hCye7qj8nxOY1lC78667ycDqYnJ7xHiGT00M4NuYqGIak2R5cEU961mjRl1ADLf-Eh1nDKpiBi

java代码-java程序 求大神指导

问题描述 java程序 求大神指导 1.编写程序删除"C:Documents and SettingsAdministratorLocal SettingsTemporary Internet Files" 和"C:WINDOWSDownloaded Program Files"下所有的TMP文件和JS文件:

红绿灯-开启程序之后关不了.....求大神指导

问题描述 开启程序之后关不了.....求大神指导 #include #define uchar unsigned char #define uint unsigned int #define port3 P3 //定义全局变量 uchar a=0; //东西显示时间的缓存变量 uchar b=0; //南北显示时间的缓存变量 uchar time=0; //记录循环单位的位置 uchar int_time=0;//记录中断的次数 uchar clock_a_red=25; //东西定时器初值 u

java代码-提示的错误,我自己始终没找到,求大神指导一下

问题描述 提示的错误,我自己始终没找到,求大神指导一下 class SelectSort { public static void SelectSort(int[]arr) { for(x=0;x { for(y=x+1;y { if(arr[x]>arr[y]); { int temp=arr[x]; arr[x]=arr[y]; arr[y]=temp; } } } } public static void Printfa(int[]arr) { for(i=0;i<arr.length;