本来源码编译没有什么可说的,对于java项目来说,只要会点maven或ant的简单命令,依葫芦画瓢,一下子就ok了。但到了Spark上面,事情似乎不这么简单,按照spark
officical document上的来做,总会出现这样或那样的编译错误,让人懊恼不已。
分类:
其他好文 时间:
2014-05-18 20:25:57
阅读次数:
391
1.Jexus国内的官网:http://www.jexus.org2.Apache官网:http://mono-project.com/Mod_mono3.Nginx官网:http://mono-project.com/FastCGI_Nginx
分类:
Web程序 时间:
2014-05-18 19:59:10
阅读次数:
385
一、事件引起的内存泄露 1、不手动注销事件也不发生内存泄露的情况
我们经常会写EventHandler += AFunction; 如果没有手动注销这个Event handler类似:EventHandler –=
AFunction 有可能会发生内存泄露。 public class Pr...
分类:
Web程序 时间:
2014-05-18 19:40:30
阅读次数:
325
1)FilterDispatcher
Struts2的前端控制器,也是Struts2的MVC中的控制器部分。在实际开发中,只需要在web.xml中配置一次即可,如下所示: Struts2
org.apache.struts2.dispatcher.FilterD...
分类:
其他好文 时间:
2014-05-18 19:01:16
阅读次数:
248
package com.rgy.Test;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.J...
分类:
编程语言 时间:
2014-05-18 07:19:51
阅读次数:
344
maven3 安装:
安装 Maven 之前要求先确定你的 JDK 已经安装配置完成。Maven是 Apache 下的一个项目,目前最新版本是 3.0.4,我用的也是这个。
首先去官网下载 Maven:http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-maven-3.0.4-bin.tar.gz
下载...
分类:
系统相关 时间:
2014-05-18 06:56:18
阅读次数:
345
https://github.com/xsmart/onvifcpplib
这个库支持ProfileS 和ProfileG,目前还在开发当中,现在已经支持Event
下面是一个客户端的例子
int _tmain(int argc, _TCHAR* argv[])
{
int ret;
/* 192.168.1.1 is the NVT, 192.168.1.234 is the N...
分类:
编程语言 时间:
2014-05-18 05:26:01
阅读次数:
384
# This is the main Apache HTTP server configuration
file. It contains the这是Apache HTTP Server的主配置文件。它包括了# configuration directives
that give the serve...
分类:
其他好文 时间:
2014-05-18 02:32:54
阅读次数:
272
发布时间:2013-06-18
编辑:thatboy本文介绍下,在阿里云的linux服务器上,安装apache的简单方法,供大家参考。随着阿里云主机的火热推出,很多的站长朋友,也开始使用阿里云服务器了。php程序,大多还是要跑在linux系统的主机上的。今天,介绍下在阿里云的linux主机上安装a....
分类:
系统相关 时间:
2014-05-17 18:47:34
阅读次数:
418
/** * 事件接口 即被观察者 * * @author Host * */ public
interface Event { void attach(Listener listener); void detach(Listener
listener); void notifyListener();...
分类:
其他好文 时间:
2014-05-17 18:33:38
阅读次数:
423