编程语言
Spring内置的event有1.ContextRefreshedEventThis event is published when theApplicationContextis either initialized or refreshed. This can also be raised us...
分类:编程语言 时间:2014-03-28 12:50:12 收藏:0 阅读:605
很多时候,在开发阶段Tomcat重复的重启过程中会遇到java.lang.OutOfMemoryError : PermGen space 错误。java.lang.OutOfMemoryError: PermGen space at java.lang.ClassLoader.defineClas...
分类:编程语言 时间:2014-03-28 13:02:34 收藏:0 阅读:422
本文转自:http://www.ibm.com/developerworks/cn/linux/kernel/l-thread/一.基础知识:线程和进程按照教科书上的定义,进程是资源管理的最小单位,线程是程序执行的最小单位。在操作系统设计上,从进程演化出线程,最主要的目的就是更好的支持SMP以及减小...
分类:编程语言 时间:2014-03-28 13:05:01 收藏:0 阅读:606
在python里导入模块一般有这么几种模式import moduleimport module as alias from module import foofrom module import * 下面就简单分析下这几种之间有什么区别, 1,2 基本一致,3,4 基本一致,这里就将其分为两组第一种...
分类:编程语言 时间:2014-03-28 13:30:44 收藏:0 阅读:534
今天手动下载安装了jdk1.8.0, 并修改了配置文件,当前默认使用该版本的jdk。但是报出一下错误:问题查到:https://issues.jenkins-ci.org/browse/JENKINS-20764https://issues.jenkins-ci.org/browse/JENKINS...
分类:编程语言 时间:2014-03-28 13:52:21 收藏:0 阅读:2972
2014-3-27 14:36:57 org.apache.catalina.core.StandardWrapperValve invoke严重: Servlet.service() for servlet [softClServlet] in context with path [/dms] t...
分类:编程语言 时间:2014-03-28 14:00:37 收藏:0 阅读:607
package com.caterSys.Thread;import java.text.SimpleDateFormat;import java.util.Date;import org.eclipse.swt.widgets.Display;import org.eclipse.swt.widg...
分类:编程语言 时间:2014-03-28 10:33:15 收藏:0 阅读:613
1、使用global语句定义全局变量2、默认参数默认参数值应该是不可变的。注意:只有在形参表末尾的那些参数可以有默认参数值,即你不能在声明函数形参的时候,先声明有默认值的形参而后声明没有默认值的形参。这是因为赋给形参的值是根据位置而赋值的。例如,def func(a, b=5)是有效的,但是def ...
分类:编程语言 时间:2014-03-28 10:36:03 收藏:0 阅读:547
// 将输入的数字金额转换成对应的中文大写金额// idNumber输入的数字金额,idCHN输出的中文大写金额function TransformNumberIntoCHN(idNumber, idCHN) { var number = document.getElementById(idNumb...
分类:编程语言 时间:2014-03-28 10:37:49 收藏:0 阅读:543
var obj = document.getElementById(”select_id”); //selectidvar index = obj.selectedIndex; // 选中索引var text = obj.options[index].text; // 选中文本var value =...
分类:编程语言 时间:2014-03-28 10:57:22 收藏:0 阅读:511
150876508775087851284
上一页512833下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!