本月博客排行
-
第1名
龙儿筝 -
第2名
zysnba -
第3名
johnsmith9th - wy_19921005
- sgqt
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- javashop
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- ranbuijj
- arpenker
- tanling8334
- kaizi1992
- sichunli_030
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- lemonhandsome
- luxurioust
- Xeden
- lzyfn123
- forestqqqq
- zhanjia
- nychen2000
- ajinn
- wjianwei666
- johnsmith9th
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
Google Guava Splitter 对比 Apache StringUtils
google的guava库是个很不错的工具库,这次来学习其spliiter的用法,它是一个专门用来 分隔字符串的工具类,其中有四种用法,分别来小结 1 基本用法
[html] view plain copy
apache配置域名转发
apache配置域名转发,如访问80端口,当域名是a.com时访问tomcat1,当域名是b.com时访问tomcat2。
在httpd.conf 中加入
NameVirtualHost *:80<VirtualHost *:80> ServerName hd.jd.net ServerAlias hd.jd.net Prox ...
Linux Apache 添加 mod_rewrite模块
两种方法1、安装apache时在编译选项中加入./configure --prefix=/usr/local/apache2 --with-mpm=worker --enable-rewrite
2、在装好apache服务的机器上增加mod_rewrite模块在apache的源码安装目录中寻找mod_rewrite.c文件 find . -name mod_rewrite.c得到的结果为./m ...
Redis教程(一):Redis简介
转载于:http://www.itxuexiwang.com/a/shujukujishu/redis/2016/0216/130.html?1455808419
一、简介:
在过去的几年中,NoSQL数据库一度成为高并发、海量数据存储解决方案 ...
apache做反向代理服务器
ProxyPass / http://192.168.0.115/
ProxyPassReverse / http://192.168.0.115/
ProxyPass /test http://192.168.1.250:8080/test
ProxyPassReverse /test http://192.168.1.250:8080/test
...
Apache Tomcat 负载均衡 主备切换
环境:
apache 2.4.16
tomcat 8.0.15
第一步:
1.准备多个tomcat的实例,在这里我简单的采取了复制多个tomcat的方式
由于多个实例全跑在一台服务器上,因此需要修改三个端口号,默认端口号如下:
8005
8080
8009
按实际情况修改三份不同的端口即可。
2.修改tomcat server.xml文件
为 Engine 节点增加 jvmRoute 属性,属性 ...
Java 9终于要包含Jigsaw项目了
当Jigsaw在Java 9中最终发布时,这个项目的历史已经超过八年了。
转载于:http://www.itxuexiwang.com/a/liunxjishu/2016/0228/180.html?1456925937
在最初的几年中,它必须 ...
三大WEB服务器对比分析(apache ,lighttpd,nginx)
一.软件介绍(apache lighttpd nginx)
1. lighttpd
Lighttpd是一个具有非常低的内存开销,cpu占用率低,效能好,以及丰富的模块等特点。lighttpd是众多OpenSource轻量级的web server中较为优秀的一个。支持FastCGI, CGI, Auth, 输出压缩(output compress), URL重写, Alias等重要功能。
L ...
Servet工作原理和生命周期详解
Servlet的工作原理和生命周期:
Servlet是一个基于java技术的web组件,用来扩展以请求/响应为模型的服务器的能力。 Servlet与平台无关,可以被编译成字节码。Servlet被容器管理,能别编译成字节码被web服务器调用,容器也被称之为引擎,是支持Servlet功能的web服务的扩展,Servlet之间的通信是通过客户端请求被容器执行成request/ ...
使用apache commons组件发送邮件
package com.sf.novatar.plf.utils;
import java.io.File;
import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import javax.activation.DataHa ...
Apache HTTP Server 常用模块之 mod_authnz_ldap
mod_authnz_ldap 模块使用 LDAP 作为验证源来验证用户信息的模块。 用户完成登录后,以后浏览器的所有请求,都会在请求头信息中增加一个Authorization的属性,值为Basic avbhfavjasv==。其中Basic是认证的方式,如果
配置验证器
参考:mod_authn_core
在 conf/httpd.conf 底部增加以下配置:
<AuthnPro ...