- 浏览: 229934 次
最新评论
-
bluedest:
tomorrow009 写道其实是可以加载 外部配置文件的,参 ...
grails整合freemarker插件的中文乱码解决及FreeMarker配置 -
okjacky:
thanks
How Tomcat Works.pdf -
tomorrow009:
其实是可以加载 外部配置文件的,参见这位老兄的文http:// ...
grails整合freemarker插件的中文乱码解决及FreeMarker配置 -
knight701:
thanks...
How Tomcat Works.pdf
文章列表
ssh 权限设置错误 导致的问题
- 博客分类:
- linux
ssh 权限设置错误 导致的问题
# /etc/init.d/sshd start
出现如下错误:
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0755 for '/etc/ssh_host_k ...
windows下
1.添加到网络的路由 route add 10.41.0.0 mask 255.255.0.0 10.27.0.1
route delete 10.41.0.0 mask 255.255.0.0
#静态路由
route -p add 10.41.0.0 mask 255.255.0.0 10.27.0.1
Linux下
1.添加到网络的路由
route add -net 10.168.0.0 netmask 255.255.0.0 gw 192.168.218.1
route del -net 10.168 ...
/*
* Copyright 2003-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/license ...
1.假设你用以下地址访问系统:
http://www.abc.com/html/aboutLaw?name=cat&age=20
很明显是渲染了aboutLaw.ftl这个页面。如果要在aboutLaw.ftl中直接使用传来的参数name和age,要怎么用呢?
很简单,用以下变量:
<#list RequestParameters?keys as x>
${x}<br/>
${RequestParame ...
java图形编程的好资料 http://www.javalobby.org/articles/ultimate-image/
一.备份数据库
BACKUP DATABASE test to disk ='D:/cbmBack/previousDay.bak' with init,name='full backup'
备注:with init表示指针移动文件头部去写。
二.备份日志
BACKUP LOG test to disk ='D:/cbmBack/log.bak' with init
备注:在备份周期开始的时候,要 ...
tomcat 的catalina.out文件的不断扩大,导致系统磁盘空间边变小,而且管理也难于管理,所以想用一种工具来分割它。网上找了找用cronolog
安装过程如下:1、下载(最新版本) # wget http://cronolog.org/download/cronolog-1.6.2.tar.gz 2、解压缩 # tar zxvf cronolog-1.6.2.tar.gz 3、进入cronolog安装文件所在目录 # cd cronolog-1.6.2 4、运行安装 # ./configure # make # make ins ...
收藏了一些grails和groovy的电子书,不敢独享,贡献出来给大家。
收藏了一些grails和groovy的电子书,不敢独享,贡献出来给大家。
收藏了一些grails和groovy的电子书,不敢独享,贡献出来给大家。
收藏了一些grails和groovy的电子书,不敢独享,贡献出来给大家。
收藏了一些grails和groovy的电子书,不敢独享,贡献出来给大家。
httpclient3.1中的两个关键方法
- 博客分类:
- java
在HttpMethodBase类中,关键方法1:
public int execute(HttpState state, HttpConnection conn)
throws HttpException, IOException {
LOG.trace("enter HttpMethodBase.execute(HttpState, HttpConnection)");
// this is our connection now, assign it to a local va ...
来自http://wntest.ustc.edu.cn/mine/wordpress/?p=400
及 http://hi.baidu.com/171892549/blog/item/0ec6aaef22acbb1dfdfa3ca7.html
NGINX的proxy_redirect功能比较强大,其作用是对发送给客户端的URL进行修改。以例子说明:
server {
listen 80;
server_name test.abc.com;
location / {
proxy_pass http://10. ...