本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
关于nginx的proxy_cache和ssi的结合使用
这里我要提到的是另一种实现方式proxy_cache结合ssi来实现。
先大致介绍下nginx的proxy_cache:http://blog.s135.com/nginx_cache/
有兴趣的同学可以顺带了解 ...
SSI include file与virtual的区别
实例:
<!--#include file="/dir/file.html" -->
<!--#include virtual="/dir/file.html" -->
有什么不同?
相同点: 都能将file.html包含进来.
不同点: virtual 包含的职能是纯文件, 而file ...
启动tomcat报错
java.sql.SQLException: Io 异常: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=186646784)(ERR=12514)(ERROR_STACK=(ERROR=(CODE=12514)(EMFI=4))))
SSI项目启动tomcat报错,数据库访问被拒绝,链接数据库部分的代码如下:
<property n ...
nginx ssi
HttpSsiModule
This module provides a filter which processes Server-Side Includes (SSI) in the
input. The list of the supported commands for SSI is currently
incomplete.
以 ...
Struct+spring+ibatis整合最小包
Struct*+spring+ibatis整合最小包 【转载】
目前已完成了纯手工的整合,现在将所用到的最少包的集合帖出来。
所用的框架版本为 struts-2.1.8.1 spring-framework-2.5.5 ibatis-2.3.4.726 oracle10g
其实这些版本不重要,其它版本只要找到相应的包就可以了。 1、 简单的struct2所需要的包: commons-fil ...
SSI
The SSI Format
All directives to the server have the following format. Each command takes different arguments, most only accept one tag at a time.
<!--#command tag1="value1" tag2="va ...
SSI静态文件包含与动态文件包含的区别
什么是SSI呢?SSI是静态文件包含,它属于web服务器,依赖web服务提供的机制来实现,无须通过CGI程序提供其整个页面。目前流行的web服务器如Apache,Nginx,Tomcat(同时也是应用服务器)等,都支持SSI,而且SSI配置也相当简单。
静态页面中的SSI例子:
<!--#include virtual="head.shtml"-->
<!--# ...