
调错汇总
家鸽996
helloworld
展开
-
JSP 中使用Struts标签出现的错误,解决办法
问题描述:The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter. Strut s tags are only usable when the request has passed through its servl原创 2013-04-14 19:32:06 · 1087 阅读 · 0 评论 -
Spring 依赖注入失败原因
这个问题要找出来,花了我一个晚上的时间:其实就是因为自己偷懒了。java.lang.NullPointerException com.action.UserAction.register(UserAction.java:87) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeM原创 2013-04-13 23:57:45 · 3214 阅读 · 0 评论 -
MyEclipse Multiple annotations found at this line: - Cannot return from outside a function or method
myEclipse return JavaScript 错误:MyEclipse Multiple annotations found at this line: - Cannot return from outside a function or method解决方法:window-->preference-->MyEclipse-->Valdation-->将JavaScript vali原创 2014-01-23 11:57:18 · 5939 阅读 · 3 评论 -
删除注册表方法
怎么删除注册表|浏览:6552|更新:2013-01-23 16:57|标签:注册表 1 2 3 4 5 分步阅读注册表(Registry)是Microsoft Windows中的一个重要的数据库,用于存储系统和应用程序的设置信息。早在Windows 3.0推出OLE技术的时候,注册表就原创 2014-01-23 09:06:21 · 2835 阅读 · 0 评论 -
Myeclipse项目导入失败解决方法
因为在你的工程项目的个目录下面没有.project和.classpath这两个文件,至于怎么引导,可以先建一个项目,和你要import的项目名称一样,建好项目滞后,项目目录里面有上述的两个文件,把上述两个文件拷到你要import的项目目录下面,然后删除你之前建的那个项目,然后在import应该就可以了。原创 2014-01-23 11:31:25 · 1426 阅读 · 0 评论 -
cannot open git-upload-pack问题 cannot open git-upload-pack
我们在eclipse上使用插件egit向github或者bitbucket同步代码时,有时候会发现出现cannot open git-upload-pack这个问题。一般引起这个问题的原因有两个:一、网络问题,天朝的网络访问外网总是会出现各种不稳定因素,你懂的。二、eclipse中egit插件的配置问题。 第一个问题自己动手解决,就不多说。今天主要说第二点:配置问题.打转载 2014-08-08 14:41:25 · 1983 阅读 · 0 评论 -
Could not write JSON: java.lang.Integer cannot be cast to java.math.BigInteger
Could not write JSON: java.lang.Integer cannot be cast to java.math.BigInteger使用Number解决原创 2015-09-18 16:50:30 · 6403 阅读 · 0 评论 -
使用Spring Quartz做自动任务 启动和关闭
因开发需要做一个队自动任务的开关,网上的搜索的结果都不是很满意,考虑到spring本身使用的是单例模式,所以在springMVC中开发是最适合的。/** * 启动、关闭自动通过 * @author yangxujia * @throws Exception * @state start为开始,stop为暂停 * @date 2015年11月13日上午11:58:17 */原创 2015-11-13 15:38:35 · 19601 阅读 · 0 评论