RPC(Remote Procedure Call Protocol) RPC使用C/S方式,采用http协议,发送请求到服务器,等待服务器返回结果。这个请求包括一个参数集和一个文本集,通常形成“classname.methodname”形式。优点是跨语言跨平台,C端、S端有更大的独立性,缺点是不支 ...
分类:
Web程序 时间:
2017-05-09 14:59:39
阅读次数:
339
centos6.2以上默认右键都没有terminal,现加入方法 例如以下 1》 yum -y install nautilus-open-terminal 2》 shutdown -r now centos6.2以上默认右键都没有terminal,现加入方法 例如以下 1》 yum -y inst ...
分类:
其他好文 时间:
2017-05-09 09:38:37
阅读次数:
177
题目: The code base version is an integer start from 1 to n. One day, someone committed a bad version in the code case, so it caused this version and th ...
分类:
其他好文 时间:
2017-05-07 20:29:08
阅读次数:
129
1.安装Django Debug Toolbarpip install django-debug-toolbar 2.设置项目的DEBUG属性DEBUG = True 3.INSTALLED_APPS添加debug_toolbar 4.MIDDLEWARE_CLASSES添加debug_toolba ...
分类:
其他好文 时间:
2017-05-07 20:02:46
阅读次数:
204
1.业务接口类及其实现/**
*定义一个远程接口
*/
publicinterfaceHelloService
{
/**
*需要远程调用的方法
*@parammsg
*@return
*/
StringsayHello(Stringmsg);
}publicclassHelloServiceImplimplementsHelloService
{
publicStringsayHello(Stringmsg)
{
return"serverreceived..
分类:
编程语言 时间:
2017-05-07 10:17:01
阅读次数:
171
创建接口/**
*定义一个远程接口,必须继承Remote接口
*/
publicinterfaceHelloServiceextendsRemote
{
/**
*需要远程调用的方法必须抛出RemoteException异常
*@parammsg
*@return
*@throwsRemoteException
*/
StringsayHello(Stringmsg)throwsRemoteException;
}2.创建实现类/*..
分类:
其他好文 时间:
2017-05-07 10:07:34
阅读次数:
138
docker ps 查看当前正在运行的容器 docker ps -a 查看所有容器的状态 docker start/stop id/name 启动/停止某个容器 docker attach id 进入某个容器(使用exit退出后容器也跟着停止运行) docker exec -ti id 启动一个伪终 ...
分类:
其他好文 时间:
2017-05-06 21:58:21
阅读次数:
182
Description Japan plans to welcome the ACM ICPC World Finals and a lot of roads must be built for the venue. Japan is tall island with N cities on the ...
分类:
其他好文 时间:
2017-05-06 16:38:27
阅读次数:
154
该题是用回溯法来解决的题: 题目: Seeding Time Limit: 2 Seconds Memory Limit: 65536 KB It is spring time and farmers have to plant seeds in the field. Tom has a nice ...
分类:
编程语言 时间:
2017-05-06 16:33:55
阅读次数:
165
一、Dubbo支持的协议 Dubbo协议、Hessian协议、HTTP协议、RMI协议、WebService协议、Thrift协议、Memcached协议、Redis协议 二、协议简介 详细参考:http://blog.csdn.net/songjinbin/article/details/4949 ...
分类:
其他好文 时间:
2017-05-06 13:13:59
阅读次数:
217