This function is an alias forapache_request_headers(). Please read theapache_request_headers()documentation for more information on how this function ...
分类:
Web程序 时间:
2014-06-29 00:34:44
阅读次数:
288
****说明:先全部看一遍,再开始安装****获取PHP源码包 http://cn2.php.net/get/php-5.5.10.tar.gz/from/this/mirrorwget安装libxml2:wget ftp://xmlsoft.org/libxml2/libxml2-2.9.1.ta...
分类:
Web程序 时间:
2014-06-28 20:23:05
阅读次数:
238
1、下载mongodb,无需编译(如果https不行,可以换成http)wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.1.tgztar -zxvf mongodb-linux-x86_64-2.6.1.tgzmv mon...
分类:
数据库 时间:
2014-06-18 18:48:18
阅读次数:
193
///一般处理程序 string action = context.Request["action"]; var adapter= new T_UserTableAdapter(); ...
分类:
其他好文 时间:
2014-06-18 08:54:47
阅读次数:
183
servlet:
public class UpAndDownServlet extends HttpServlet {
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setCon...
分类:
其他好文 时间:
2014-06-18 06:24:27
阅读次数:
205
首先必须要了解客户端跳转和服务器端跳转的区别:
客户端跳转: response.sendRedict(String path),地址栏发生改变。不能传递request属性。
服务器端跳转: 地址栏不发生改变。能传递request属性。
request属性范围: 只有在服务器端跳转以后,所有设置的内容才会停留下来。
session属性范围: 不管是客户端跳转还是服务器端跳转,只要是是属性设...
分类:
编程语言 时间:
2014-06-17 22:27:29
阅读次数:
331
Spring 默认创建的对象是单例模式的对象
设置Bean的作用域,通过Bean元的Scope属性
Scope取值范围:
Singleton:单例
proptotype:非单例
Request:创建该Bean,并调用request.setAttribute(“beanId”,beanObj);
Session:创建该Bean,并调用request.get...
分类:
编程语言 时间:
2014-06-17 22:11:13
阅读次数:
313
项目是使用spring MVC(1)在浏览器中访问,后台总报错:Java代码NomappingfoundforHTTPrequestwithURI[/exam3/welcome]inDispatcherServletwithname'spring2'查了好半天,才发现是controller没有扫描到...
分类:
移动开发 时间:
2014-06-17 20:04:22
阅读次数:
494
我的第一个Nodejs程序:Hello World var http = require("http");http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/.....
分类:
Web程序 时间:
2014-06-17 19:59:52
阅读次数:
241
vim在centos中的版本为7.0,导致很多插件都无法使用,所以想到升级一下。wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2tar jvzf vim-7.4.tar.bz2cd vim74#安装依赖yum install ncurses-de...
分类:
其他好文 时间:
2014-06-17 19:50:44
阅读次数:
251