下载JBOSS 无需安装 修改环境变量: JBOSS_HOME=/root/jboss-as-7.1.1.Finalexport JBOSS_HOME 进入bin下 ./standalone.sh -b 172.16.16.170 一定要 -b 本地地址,否则其他机器无法访问 ...
分类:
其他好文 时间:
2016-12-12 19:08:57
阅读次数:
175
序言 之前对hibernate中的查询总是搞混淆,不明白里面具体有哪些东西。就是因为缺少总结。在看这篇文章之前,你应该知道的是数据库的一些查询操作,多表查询等,如果不明白,可以先去看一下 MySQL数据表查询操作详解 ,以至于看这篇文章不用那么吃力。 --WH 一、hibernate中的5种检索方式 ...
分类:
Web程序 时间:
2016-12-12 14:16:32
阅读次数:
387
calltree是在linux下面看c代码(尤其是复杂的内核代码)的神器。 推荐 calltree+vim + ctags + cscope + taglist 【 vim: 搭建vim看代码的环境 http://www.cnblogs.com/mylinux/p/5013588.html】 或者 ...
分类:
其他好文 时间:
2016-12-08 18:02:35
阅读次数:
467
HDFS集群主要由管理文件系统元数据的NameNode和存储实际数据的DataNode组成. HDFS架构描述了NameNode,DataNodes与客户端的基本交互.客户端与NameNode联系以进行文件元数据或文件修改,并直接与DataNode执行实际的文件I / O。 Hadoop一些显著的特 ...
分类:
其他好文 时间:
2016-12-07 23:00:40
阅读次数:
179
<?php/** * SQL Parser from: http://code.google.com/p/php-sql-parser/ * License: New BSD */class PHPSQLParser{ var $reserved = array(); var $functions ...
分类:
数据库 时间:
2016-12-05 16:49:11
阅读次数:
312
Given a root node reference of a BST and a key, delete the node with the given key in the BST. Return the root node reference (possibly updated) of th ...
分类:
其他好文 时间:
2016-12-05 13:43:24
阅读次数:
156
Given a string containing only digits, restore it by returning all possible valid IP address combinations. For example:Given "25525511135", return ["2 ...
分类:
其他好文 时间:
2016-12-03 08:04:41
阅读次数:
151
在支持向量机(以下简称SVM)的核函数中,高斯核(以下简称RBF)是最常用的,从理论上讲, RBF一定不比线性核函数差,但是在实际应用中,却面临着几个重要的超参数的调优问题。如果调的不好,可能比线性核函数还要差。所以我们实际应用中,能用线性核函数得到较好效果的都会选择线性核函数。如果线性核不好,我们 ...
分类:
其他好文 时间:
2016-12-03 00:55:43
阅读次数:
688
Query Method MongoDB provides the db.collection.find() method to read documents from a collection. The db.collection.find() method returns a cursor to ...
分类:
数据库 时间:
2016-12-01 07:44:27
阅读次数:
333
CRUD operations create, read, update, and delete documents. Create Operations Create or insert operations add new documents to a collection. If the co ...
分类:
数据库 时间:
2016-12-01 07:40:30
阅读次数:
264