- 浏览: 22763 次
- 性别:
最新评论
文章列表
简单的spring和mybatis整合的配置文件
- 博客分类:
- j2ee
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.sp ...
1. window.parent window.opener
parent用在iframe的父窗口
opener用在window的open方法的父窗口
jquery validate常用选项
- 博客分类:
- js
$("form").validate({
// debug:true,//debug时不会提交表单
rules:{//rules和messages,规则和对应消息
name:"required",
password:"required"
},messages:{
name:"name is required",
password:"password is required"
},
submitHandler :function(){/ ...
web.xml
<web-app> <display-name>Archetype Created Web Application</display-name>
<servlet> <servlet-name>example</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> &l ...
function trim(text){
return text.replace(/(^\s*)|(\s*$)/g, "");
}
text..onkeyup=function(){
this.value=this.value.replace(/[^\w\.\/]/ig,'');
}
//背景
#bg{ display: none; position: absolute; top: 0%; left: 0%; width: 100px; height: 100px; background-color: black; z-index:1001; -moz-opacity: 0.7; opacity:.70; filter: alpha(opacity=70);}
var mask = document.getElementById("bg");
var b = document.documentElement?docu ...
/^(13[0-9])|147|(15[^4,\D])|18[0-9]\d{8}$/.test('phoneNumber')
天气api,101190101代表城市。
http://www.weather.com.cn/data/sk/101190101.html
Java MD5 加密简例
- 博客分类:
- javase
package com.sub.md5;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class TestMd5 {
public static void main(String[] args) throws ...
小配置量整合apache http server 和tomcat
安装http server和tomcat
http://daqiqiu.iteye.com/blog/1867740
配置mod_jk.sotar -xvf tomcat-connectors-1.2.37-src.tar.gz ./configure --with-apxs=/<http server home>/bin/apxs 执行后mod_jk.so在tomcat-connectors-1.2.37-src/nativ ...
我的系统是centos6,自带的http server不能添加mod_jk模块,网上查是系统原因。所以自己装apache http server。
安装apache http server 2.2.4,按照文档用cofigure命令配置报错,configure: error: APR not found. 需要先安装apr-1.4.6.tar.gz。
安装apche APR,还是configure报错,configure: error: no acceptable C compiler found in $PATH,需要安装gcc
用yum install gcc 安装gcc。然后./c ...
/dev/null
特殊的文件,可以将不需要的信息重定向到这里,相当于将它抛弃。
$HOME
每次登陆后,bash按照如下顺序在~/home下找.bash_profile .bash_loign .profile文件,并且执行找到的第一个文件。/etc/profile是一个全局script,每次登陆在执行个人script之前执行全局script。
$?
用来保存上一条命令的执行结果,0为success,其他为false,可以通过exit 7 改变$?为7.
另有$$保存当前shell的PID,$#保存当前命令参数,$*保存当前命令所有参数。
" ...
grep
grep <expression> <path>
grep '^public' /etc/passwd #search line begin with public in '/etc/passwd'
grep options:
-E enable extends pattern
-i case insensitive
-n show line number
2. find
find <path> <expressions>:default path . default expressions-print
expr ...
启动http server后用到应用路径vi编辑html可以访问,但是自己上传资源后出现403,查看error_log发现access denied,网上搜索解决方法:
1、修改httpd.conf中用户,
把apache改成上传文件用户,我觉着上传文件的用户应该没权限监听80端口,我把用户直接改成root了,重启服务报错,
User apache Group apache 失败。 2、chcon -R -t httpd_sys_content_t <path to web files> 运行这个命令,具体内容没细看,仍然forbidden,并且连 ...