12 2014 档案
摘要:var tdid="gov_sslim";
var reg=/(\w+)lim/;
var name=tdid.match(reg);
console.log(name[1]);
这里便将gov_ss提取出来了。name[0]的取值还是tdid的字符串。
阅读全文
摘要:注:问题已解决。子类继承了父类所有的变量与方法,只是JVM设置了访问权限,不让你使用罢了。首先来看看下面这段代码:public class Base { private int i=5; public Base(){ System.out.println("I come f...
阅读全文
摘要:错误完整表述:Filter execution threw an exception] with root cause java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I在谷哥,度娘上问了,他们给出居多无比的文章,并且答案很一致...
阅读全文
摘要:INFO [http-apr-8080-exec-26] (NullableType.java:203) - could not read column value from result set: psw1_; 无法转换为内部表示
WARN [http-apr-8080-exec-26] (JDBCExceptionReporter.java:100) - SQL Error: 17059, SQLState: null
ERROR [http-apr-8080-exec-26] (JDBCExceptionReporter.java:101) - 无法转换为内部表示
阅读全文
摘要:ERROR [ContainerBackgroundProcessor[StandardEngine[Catalina]]] (ContextLoader.java:308) - Context initialization failed
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 46 in XML document from class path resource [applicationContext.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 46; columnNumber: 57; cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'tx:annotation-driven'
阅读全文
摘要:作者:secooler 快乐的DBA Ajax 的兴起改变了传统的 B/S 结构应用程序中以页面为单位的交互模式,Ajax 引入的局部刷新机制带来了更好的用户体验,促使浏览器中的页面开始向应用程序发展,Google Mail, Google Reader 是在这种趋势下诞生的典型应用。 Dojo 提供了基于 XmlHttpRequest 的对象的 XHR 框架来支持异步 Ajax 调用,另外 Do...
阅读全文
摘要:dojo/mouse Authors:Kris Zyp Project owner:Kris Zyp since:1.7.0 Contents Usage enter leave mouseButtons Examples See Also dojo/mouse is a module that provides extension events for hovering and mouse ...
阅读全文