JAMon简介JAMon的全名是:Java Application Monitor。它是一个小巧的,免费的,高性能的,线程安全的性能监测工具。它可以用来测定系统的性能瓶颈,也可以用来监视用户和应用程序之间的交互情况。Jamon主要是用来检测jee的应用程序。JAMon集成到项目中假设现在有一个项目名...
分类:
Web程序 时间:
2014-06-14 21:43:13
阅读次数:
436
Spiral Matrix:Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:...
分类:
其他好文 时间:
2014-06-14 21:42:10
阅读次数:
309
Source CodeProblem:3415User:wangyuchengMemory:16492KTime:704MSLanguage:C++Result:AcceptedSource Code#include#include#include#includeusing namespace st...
分类:
其他好文 时间:
2014-06-14 21:41:07
阅读次数:
215
当内部函数创建时,静态的保存了父作用域链,即使父函数执行完毕,其变量对象(这里面保存着我们想要的父变量)一直保存在内部函数的作用域链中。内部函数不再被调用之前,这个活动对象一直在内存中(通俗讲就是这时候父函数的变量对象和内部函数绑定在一起了)。这种机制取名为闭包。简洁地说:闭包就是有权访问其他函数作...
分类:
其他好文 时间:
2014-06-14 21:40:12
阅读次数:
216
ICE发布者/订阅者的一个最简单例子IceStorm服务config.icebox## The IceBox server endpoint configuration. This endpoint is only used# to communicate with the IceBox Servi...
分类:
其他好文 时间:
2014-06-14 21:38:09
阅读次数:
535
using System;using System.Collections.Generic;using System.Linq;using System.Net;using...
分类:
其他好文 时间:
2014-06-14 21:37:08
阅读次数:
262
我们用实例来说明这一部分表结构现在有客户表、订单表、图书表、作者表,客户表Customer (idcustomer_name)订单表Order (idorder_name customer_id book_id)图书表 (idbook_name author_id)作者表 ...
分类:
其他好文 时间:
2014-06-14 21:34:02
阅读次数:
271
使用spring提供的事务处理机制的好处是程序员可以不用关心事务的切面了,只要配置就好了,可以少写代码。spring声明式事务处理 spring 声明:针对的是程序员,程序员告诉spring容器,哪些方法需要事务,哪些方法不需要事务 事务处理 spring容器来做事务处理目的:让spring管理事务...
分类:
编程语言 时间:
2014-06-14 21:31:59
阅读次数:
342
//用数组实现树 1 #include 2 #include 3 #include 4 #define N 10000 5 #define optd 1 6 #define optr 2 7 using namespace std; 8 int treeL[N], treeR[N]; 9 cla.....
分类:
其他好文 时间:
2014-06-14 21:29:55
阅读次数:
264
1、Android环境搭配:下载jdk下载Android ADT下载安装Android SDK,地址:http://developer.android.com/sdk/index.html#download创建AVD2、下载Android NDK:http://developer.android.c...
分类:
移动开发 时间:
2014-06-14 21:26:49
阅读次数:
356