摘要: # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information. # In particular, see #... 阅读全文
posted @ 2018-07-17 10:37 ForgotTheMemory 阅读(279) 评论(0) 推荐(0) 编辑
摘要: [PHP] ;;;;;;;;;;;;;;;;;;; ; About php.ini ; ;;;;;;;;;;;;;;;;;;; ; PHP's initialization file, generally called php.ini, is responsible for ; configuring many of the aspects of PHP's behavior. ; PH... 阅读全文
posted @ 2018-07-17 10:13 ForgotTheMemory 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 意义 Apache:是C语言实现的,专门用来提供HTTP服务。 特性:简单、速度快、性能稳定、可配置(代理) 1、主要用于解析静态文本,并发性能高,侧重于HTTP服务; 2、支持静态页(HTML),不支持动态请求如:CGI、Servlet/JSP、PHP、ASP等; 3、具有很强的可扩展性,可以通过 阅读全文
posted @ 2018-07-17 09:41 ForgotTheMemory 阅读(145) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-05-11 18:21 ForgotTheMemory 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <sys:checkbox id="businessTransaction" name="businessTransaction" items="${fns:getDictList('business_transaction')}" values="${hotelMain.businessTrans 阅读全文
posted @ 2018-04-24 17:14 ForgotTheMemory 阅读(300) 评论(0) 推荐(0) 编辑
摘要: reset(版本撤回) 格式 git reset [-q] [<commit>] [--] <paths>...git reset (--patch | -p) [<commit>] [--] [<paths>...]git reset (--soft | --mixed | --hard | -- 阅读全文
posted @ 2018-03-20 11:30 ForgotTheMemory 阅读(172) 评论(0) 推荐(0) 编辑
摘要: <fmt:formatDate pattern="yyyy-MM-dd" value="${account.createDate }" type="both"/> 阅读全文
posted @ 2018-03-09 16:19 ForgotTheMemory 阅读(511) 评论(0) 推荐(0) 编辑
摘要: //使用正则表达式 //Pattern pattern = Pattern.compile("[^\u4E00-\u9FA5]");//[\u4E00-\u9FA5]是unicode2的中文区间 Pattern pattern = Pattern.compile("用户"); Matcher mat 阅读全文
posted @ 2018-03-09 12:01 ForgotTheMemory 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 1、启动一个WEB项目的时候,WEB容器会去读取它的配置文件web.xml,读取<listener>和<context-param>两个结点。 2、紧急着,容创建一个ServletContext(servlet上下文),这个web项目的所有部分都将共享这个上下文。 3、容器将<context-par 阅读全文
posted @ 2018-03-08 16:38 ForgotTheMemory 阅读(186) 评论(0) 推荐(0) 编辑
摘要: ajax 1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。 3.timeout: 要求为Numb 阅读全文
posted @ 2018-03-07 10:55 ForgotTheMemory 阅读(144) 评论(0) 推荐(0) 编辑