文章列表
1、工厂方式 function Car(){ var ocar = new Object; ocar.color = "blue"; ocar.doors = 4; ocar.showColor = function(){ document.write(this.color)
Spring MVC 的请求参数获取
通过@PathVariabl注解获取路径中传递参数
JAVA
1 @RequestMapping(value = "/{id}/{str}")2 public ModelAndView helloWorld(@PathVariable String id,3 @PathVariable String str) {
经常,我们在启动应用的时候发现系统需要的端口被别的程序占用,如何知道谁占有了我们需要的端口,很多人都比较头疼,下面就介绍一种非常简单的方法,希望对大家有用
假如我们需要确定谁占用了我们的9050端口
1、Windows平台在windows命令行窗口下执行:
C:\>netstat -aon|findstr "9050"
TCP 127.0.0.1:9050 0.0.0.0:0 LISTENING 2016
看到了吗,端口被进程号为2016的进程占用,继续执行下面命令:
C:\&g ...
- innerText VS textContent
FireFox supports textContent, other Browsers supports innerText
Eg:
var divId = document.getElementById('divId');
if(window.navigator.userAgent.indexOf("Firefox") >= 1){
alert(divId.textContent);
} else {
alert(divId.innerText);
...
URL: http://www.extjs.com/forum/showthread.php?56893-table-layout-cellspacing-and-custom-
CSS-class
How about:
Code:
Ext.override(Ext.layout.TableLayout, {
tableCfg: {tag:'table', cls:'x-table-layout', cellspacing: 0, cn: {tag: 'tbody'}},
onLayout : function(ct, target){
var cs = ct.i ...
转:http://hi.erp100.com/space-53550-do-blog-id-13531243.html
1、软件版本:
Tomcate 5.5;Apache Httpd 2.2;JDK 1.6;S6240本;WinXP Home Edition操作系统;
2、需求概况:
对外总共有5个服务:www.paoding.net,
passport.paoding.net, office.paoding.ne ...
当数据量非常大的时候,dat文件也会变大.但是当删除数据之后,文件并没有变小.有没有可以对已删除数据的文件进行减肥操作的,象oracle的shrink一样?
- 2008-10-15 14:15
- 浏览 1511
- 评论(1)