- 浏览: 1231021 次
- 性别:
- 来自: 上海
最新评论
-
lankk:
lankk 写道事实上,在运行String s1=new St ...
理解String 及 String.intern() 在实际中的应用 -
lankk:
事实上,在运行String s1=new String(&qu ...
理解String 及 String.intern() 在实际中的应用 -
lankk:
同意1楼的说法http://docs.oracle.com/j ...
理解String 及 String.intern() 在实际中的应用 -
raoyutao:
...
jdk 线程池 ThreadPoolExecutor -
hongdanning:
理解了。之前困惑的一些明白了。谢谢分享。
理解String 及 String.intern() 在实际中的应用
文章列表
最近看一个斯坦福的视频, 里面的Cocoa框架大量使用了代理模式,定制类的行为,
学生就发问了,为什么不采用子类化的策略呢,
老师就说了 子类化 和 代理都是起到代码分离的作用。无所谓对错,有人喜欢子类化,有人喜欢代理,这是一个需要综合考虑的设计决策
自己写点东西记一下
package delegate.subclass;
public class UIApplication {
Object view = new Object();
public String draw() {
return " ...
select coalesce(p.uuid,convert( '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',BINARY)), date(bc.date) d, count(bc.id)
from
http://www.geeksengine.com/database/single-row-functions/conversion-functions.php
/^((\w)|([\u4E00-\u9FA5])){1,20}$/.test(accountName)
if( typeof customAction == "function" ){
customAction(data);
}
hql select where in
- 博客分类:
- HIbernate
public List<User> getUserByIds(List<Long> ids) {
Query query = getSession().getNamedQuery("getUserByIds");
query.setParameterList("ids", ids);
return (List<User>) query.list();
}
from User where id in (:ids)
Struts2的s:if标签很怪异,下面来具体地看看,如何用s:if标签来判断URL中的参数。
访问一个带有URL参数的页面,如:http://localhost:8080/a.jsp?name=xht555
# <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
# <%@ taglib prefix="s" uri="/struts-tags"%& ...
GBK to utf-8
native2ascii -encoding UTF-8 .\MessageResources_zh.properties.native .\MessageResources_zh.properties
native2ascii -encoding UTF-8 .\MessageResources_zh_TW.properties.native .\MessageResources_zh_TW.properties
用法及返回结果如下:
lvyaozu@lvyaozu-desktop:~/shell$ ./requesturl.sh -n20
http://www.baidu.com
Request url: http://www.baidu.com
Request number: 20
Request Failed: 0
——Average Value——
time_connect: 0.1614
time_total: 0.1693
time_namelookup: 0.0088
————————-
请求参数:
-n 指定发送多少次请求,默认为10
返回结果为 curl ...
find /var/log/xxx -daystart -type f -mtime 7 -exec rm -f '{}' ';'
/usr/sbin/ntpdate 210.72.145.44 > /dev/null 2>&1
使用 ntpdate 校准时间
没有安装的话,安装 ntp
#yum -y install ntp
使用: #ntpdate time.stdtime.gov.tw 校准时间
#date 查看是否更新
#clock -w 写入BIOS
目前可以提供校時的server
time.stdtime.gov.tw
cl ...
rewrite "^/api/say/(?!sex)(?!female)([0-9a-z]+)" http://xxx.cn/aaa?ttt=4&yy=$1 ; //不匹配 sex female
nginx
rewrite 伪静态配置参数和使用例子 附正则使用说明
正则表达式匹配,其中:
* ~ 为区分大小写匹配
* ~* 为不区分大小 ...
拟机上搭了 haproxy nginx tomcat的架构模型
没有haproxy的时候 nginx监听80端口 将动态请求转发给后端的8080
有haproxy后 haproxy监听80 转发给nginx的8001 nginx在讲动态的请求转发给tomcat的8080
但是就有了一个问 ...
多模块的时候 模块之间的test代码也是互相依赖 但默认打包是不会把test文件夹里面的代码打包到jar里面的,下面就是解决方法
打包test
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
...
在nginx下搭建wordpress 并使用permalinks 功能, 设置为 Month and name
Month and name
http://www.goog.cn/blog/index.php/2010/09/sample-post/
在这个方式下访问不正常,遂google,答案如下
http://www.cnblogs.com/HCOONa/archive/2010/08/22/enable-permalink-for-wordpress-3-in-nginx.html
安装完成后准备启用友好形式的永久链接,但是经过 ...
update
ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value
建议使用GRANT语句进行授权,语句如下:
grant all privileges on *.* to root@'%' identified by "root";
---------------------------------------------------
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP
ON maildb.*
TO ...
指令
[#gzip gzip]
[#gzip_buffers gzip_buffers]
[#gzip_comp_level
gzip_comp_level
]
[#gzip_min_length gzip_min_length]
[#gzip_http_version gzip_http_version]
[#gzip_proxied gzip_proxied]
[#gzip_types gzip_types]
把nginx升级到最新以后,发现用原来的配置启动的时候会提示:
Starting nginx: [warn]: duplicate MIME ...