在用java swing 做例子,给页面设置皮肤样式的时候出现了这个错误: org.jvnet.substance.api.UiThreadingViolationException: Component creation must be done on Event Dispatch Thread    at org.jvnet.substance.utils.SubstanceCoreUtilities.testComponentCreationThreadingViolation(Subst…
component is not authorized by this account hint: [aMADoA0312e514] component is not authorized by this account hint: [B3GVCa0189e575] 错误解决? component is not authorized by this account hint: [rIP5ya0345e578] component is not authorized by this account…
之前装了OFFICE2003,后来改装了 OFFICE2007,之后XLSX文件双击总是用2007 Microsoft Office component 打开,导致无法打开. 解决方法: 打开注册表REGEDIT,找到[HKEY_CLASSES_ROOT\.xlsx],发现默认数据值是xlsx_auto_file,改成“Excel.Sheet.12”就OK了…
var evt = arguments.callee.caller.arguments[0] || window.event; evt.preventDefault(); evt.stopPropagation(); 找了半个小时,终于解决了.…
解决方法import Vue from "vue"; 默认引入的文件是 vue/dist/vue.runtime.common.js.这个可以在node_modules/vue/package.json文件里面查到.package文件的main选项指定了默认执行的文件.关键的package.json代码如下: 这个代码说明了 vue.runtime.common.js 文件不含编译器,因此不支持template选项.我们使用Webpack和template选项的话,可以使用vue.co…
Atitit 解决Unhandled event loop exception错误的办法 查看workspace/.metadata/.log org.eclipse.swt.SWTError: No more handles 查看handle,已经7w了... Tasklist manager,属性,表明句柄数量显示..exploror这个桌面程序使用了1w的handle.走关闭哪..sezo  ok 兰.. 原因:::handle over..Os bug 作者:: 绰号:老哇的爪子 ( 全…
问题Initial SessionFactory creation failed.org.hibernate.HibernateException: /hibernate.cfg.xml not found解决方法 http://stackoverflow.com/questions/15258594/hibernate-exception-hibernate-cfg-xml-not-found这个提示很明显是资源文件没配置对,所以在运行时找不到,那么怎么配置才对呢? 网上找到一个方法: htt…
一.event.srcElement:当前事件的源: 在IE下,event对象有srcElement属性,但是没有target属性;Firefox下,event对象有target属性,但是没有srcElement属性.但他们的作用是相当的,即: firefox 下的event.target = IE 下的event.srcElement 解决方法:使用obj(obj = event.srcElement ? event.srcElement : event.target;)来代替IE下的even…
使用ziplin依赖: <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth-zipkin</artifactId> </dependency> 应用启动报错:Caused by: java.lang.ClassNotFoundException: zipkin.Component 解决方法:指定更高版本的sp…
IE 中可以直接使用event 对象,而FF 中则不可以,解决方法之一如下: var theEvent = window.event || arguments.callee.caller.arguments[0]; 第二种是将event 作为参数来传递: function xxx(e){var theEvent = window.event || e;} srcElement 和target 在IE 中srcElement 表示产生事件的源,比如是哪个按钮触发的onclick 事件,FF 中则是…