IntroductionThis document provides instructions
for integrating Openfire authentication, users, and groups with your custom
database tables. This is u...
分类:
数据库 时间:
2014-05-05 12:46:39
阅读次数:
672
Every class should clearly document its thread
safety properties with a carefully worded prose description or a thread safety
annotation. The synchron...
分类:
编程语言 时间:
2014-05-05 12:00:18
阅读次数:
437
安装配置环境: os:centos
5.4 mysql:5.5.37 虚拟server1:mysql_master(192.168.40.241) 虚拟server2:mysql_slave(192.168.40.242)安装Mysql:
可参考解压后的INSTALL-BINARY,如下: shel...
分类:
数据库 时间:
2014-05-04 12:34:32
阅读次数:
516
找到\xampp\apache\conf\httpd.conf配置文件Access
forbidden!You don’t have permission to access the requested directory. There is
either no index document or ...
分类:
其他好文 时间:
2014-05-04 11:12:23
阅读次数:
336
最近重新看鸟哥,准备装CentOs,一看最新版本是6.5,书上是5.X的,略有点不同,二话不说,搞起~
我的VMware版本是10.0.1 build-1379776
先新建一个虚拟机,挂上iso文件(两个iso挂第一个就行了,另一个放在同一目录下)
启动,出现以下画面
Install or upgrade an existing system 安装或升级现有的系统
install...
分类:
其他好文 时间:
2014-05-04 09:04:44
阅读次数:
376
1 // chinacoder.cn JavaScript Document 2 3
$(document).ready(function() { 4 5 //.filter(":not(:has(.selected))")
//去掉所有不包含class为.s...
分类:
Web程序 时间:
2014-05-03 22:23:20
阅读次数:
446
2dx3.0下JSON解析库官方已经集成好了,我们引用就OK。
JSON文件hello.json内容
{"pets":["dog","cat"],"stuInfo":{"stuAge":"23","stuName":"zhangsan","birthday":"1990-01-12"},"username":"tomsfff","other":[true,30]}
.h头文件...
分类:
Web程序 时间:
2014-05-03 21:34:48
阅读次数:
319
今天凑巧去W3School扫了一遍JavaScript教程,发现从中看到了不少自己以前没有注意过的细节。
我这些细节列在这里,分享给可能同样不知道的朋友:
1、使用 document.write() 仅仅向文档输出写内容。如果在文档已完成加载后执行 document.write,整个 HTML 页面将被覆盖:
实例
My First Web Page
My...
分类:
编程语言 时间:
2014-05-03 21:30:52
阅读次数:
344
今天想写一个小app,要用到数据库,所以在这里先简单记一下它的安装和用法。
1.安装SQLite3
命令行下输入:sudo apt-get install sqlite3
2.安装SQLite3编译需要的工具包
命令行下输入: sudo apt-get install libsqlite3-dev
3.安装图形界面 (如果你喜欢)
命令行输入:
sudo apt-get insta...
分类:
数据库 时间:
2014-05-03 21:22:38
阅读次数:
267
CentOS6和RHEL6系统的YUM中包含了MySQL安装包,版本是MySQL5。rpm软件包的名称是mysql-server。
使用以下命令可以安装MySQL数据库:
yum install -y mysql-server
安装完成后我们可以通过以下命令启动MySQL服务:
service mysqld start
第一次启动MySQL服务后,...
分类:
数据库 时间:
2014-05-03 21:14:54
阅读次数:
462