- 浏览: 419910 次
- 性别:
- 来自: 北京
最新评论
-
super_zou:
...
世界主要国家地区下拉菜单三级联动1 -
ldl_xz:
http://www.9958.pw/post/wenku 曾 ...
利用pdf2swf将PDF转换成SWF -
superlxw1234:
请教一下楼主,你们是如何解决使用MAgent时候,一台主Mem ...
memcached集群-magent -
头子:
中间那段关于“空隙”的解决方式很赞
HTML固定表头Table -
qiankun:
比较实用,好好学习了一下
Mybatis 在dao中获取分页的总记录数
文章列表
1.示例
http://www.onlyfun.com/goods/company.jsp?companyId=455326 ==> http://www.onlyfun.com/company/455326.html
2.好处
(1)更好满足搜索引擎要求;
(2)更美观,给用户带来更良好的体验;
(3)安全性(页面,参数,技术)。
3.实现
(1)第三包urlrewrite;(2)Apache HTTP Server 2.x配制mod_proxy,Rewrite;(3)struts、springMVC reset风格等。
4.urlr ...
MyBatis中,可以使用Generator自动生成代码,包括DAO层、 MODEL层 、MAPPING SQL映射文件。 第一步:下载MyBatis的Generator工具 下载地址:http://code.google.com/p/mybatis/downloads/detail?name=mybatis-generator-core-1.3.1-bundle.zip&can=3&q=Product%3DGenerator 第二步:配置自动生成代码所需的XML配置文件,例如(generator.xml)
<?xml version="1.0" ...
Windows版本安装
windows 上安装 memcached ,我的理解是一般用于应用程序测试和开发阶段。一般在 windows 上直接应用 memcached 的比较少。本次功能介绍和学习先用 windows 吧,毕竟环境容易找到些。
下载二进制版本
windows 版本的服务端程序在官方网站上没有找到,官网只有源代码版本。为了方便,直接在网上 google 到对应的二进制版本下载 .
这里使用 1.4.4wind32 版本
下载地址: http://downloads.northscale.com/memcached-win32-1.4.4-14.zip
...
Java读取properties文件
使用J2SE API读取Properties文件的六种方法
1。使用java.util.Properties类的load()方法
示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name));
Properties p = new Properties();
p.load(in);
2。使用java.util.Res ...
数据库行列转换
SQLserver 2000 行列转换例子:1.学号, 课程号, 分数sid cid mark030611 1000 70030611 1001 80030611 1002 75030611 1003 86030611 1004 70030612 1000 74030612 1001 83030612 1002 75030612 1003 86030612 1004 75030613 1000 75030613 1001 85030613 1002 85030613 1003 86030613 1004 90=>转换为下面形式:sid 100 ...
JavaScript 校验密码强度
Oracle随机函数—dbms_random
1.基础认识
关于这些函数及DBMS_RANDOM包的文件都包含在SQLPlus中:
select text from all_source
where name = 'DBMS_RANDOM'
and type = 'PACKAGE' order by line;
◆ TYPE num_array
1. Oracle 随机获取10条记录
select * from (select * from table order by dbms_random.value ) where rownum <11
Oracle 随机获取10条记录:
select tt.*from (select rownum rn, t.* from table1 t) ttwhere tt.rn in(select trunc(dbms_random.value(1, (select count(*) from table1 )))from dualcon ...
// Format date or time.
Date.prototype.format = function(format) {
/*
* eg:format="yyyy-MM-dd hh:mm:ss";
*/
if (!format) {
format = "yyyy-MM-dd hh:mm:ss";
}
var o = {
"M+" : this.getMonth() + 1, // month
"d+" : this.getDate(), // day
...
function formatToDollar(num) {
num = num.toString().replace(/\$|\,/g, '');
if (isNaN(num))
num = "0";
sign = (num == (num = Math.abs(num)));
num = Math.floor(num * 100 + 0.50000000001);
cents = num % 100;
num = Math.floor(num / 100).toString();
if (cents < 10)
cents = ...
1. 创建含有需要类型转化对象的JSP页面(input.jsp,里面表单里含有自定义类)
<body>
<h3><font color="red">使用逗号将点的两个坐标分隔开</font></h3>
<s:form action="Register">
<s:textfield name="point" label="point"/>
<s:textfi ...
1. 创建含有需要类型转化对象的JSP页面(input.jsp,里面表单里含有自定义类)<body> <h3><font color="red">使用逗号将点的两个坐标分隔开</font></h3> <s:form action="Register"> <s:textfield name="point" label="point"/> <s:textfield name="age" label=&qu ...