- 浏览: 495782 次
- 性别:
最新评论
-
沉醉音乐的咖啡:
使用 preventDefault() 函数来阻止对表单的提交。 -
PhoenixHorse:
原表的索引啥的不就失效了吗
oracle修改表精度 -
yupengcc:
资料带走 3Q
RBAC模型 -
Java路:
...
JSON-LIB快速入门(转) -
damoqiongqiu:
utf-8下,E文字符占1个字节,中文字符占3个字节。如果一个 ...
AS3:截取定长度的字符串
文章列表
MS-DOS的清屏命令: cls
社保 https://e.szsi.gov.cn/siservice/
http://www.szzfgjj.com/
x2a0x3c5d5e1f7a3b9c2e7b
默认不设置代理:
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
函数索引 索引分类 分表 分区 设计模式
javascript to jsonString :JSON.stringify(jso);
//@ s ...
CAS REST Protocol 测试
- 博客分类:
- CAS
获取TGT
curl -k -i -X POST -d "username=casuser&password=Mellon&service=https://www.baidu.com" https://cas.example.org:8443/cas/v1/tickets
---------------------------------------------------------------------
HTTP/1.1 201
X-Application-Context: cas:native:8443
Location: https:// ...
package {
import flash.text.TextField;
import flash.utils.ByteArray;
import flash.events.MouseEvent;
import flash.events.Event;
import flash.net.FileReference;
import flash.display.MovieClip;
public class Test extends MovieClip {
private var ref : FileReference;
...
openmeetings
- 博客分类:
- openmeetings
http://apache.fayea.com/openmeetings/3.1.2/bin/apache-openmeetings-3.1.2.zip
http://apache.fayea.com/openmeetings/3.1.2/src/apache-openmeetings-3.1.2-src.zip
centos7没有安装ifconfig命令的解决方法
http://www.centoscn.com/CentosBug/osbug/2014/0916/3750.html
http://www.2cto.com/os/201303/199029.html
virtualbo ...
javaweb 读取 classes 下的文件
- 博客分类:
- Java
http://www.cnblogs.com/hxling/archive/2010/09/06/1819260.html
javaweb 读取 classes 下的文件
try {
ClassLoader loader = Thread.currentThread().getContextClassLoader();
InputStream is=loader.getResourceAsStream("com/xxx/module/product/META-INF/config/action.xml");
BufferedReader br ...
ResultToBean
- 博客分类:
- Hibernate
package util;
import java.lang.reflect.Field;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import org.hibernate.transform.ResultTransformer;
@SuppressWarnings("serial")
public class ResultToBean implements ResultTransformer {
private Class entityC ...
js字段转列
- 博客分类:
- JavaScript
function fieldToColumn(str) {
if (!!str && typeof(str) === "string") {
return str.replace(/[a-z]+[A-Za-z0-9]+/g, function (match) {
return match.replace(/[A-Z]|\d+/g, function (match) {
return "_" + match.toLowerCase();
})
})
}
return str;
}
fu ...
mysql 查看当前查询sql ,停止查询
- 博客分类:
- mysql
show status
show processlist;
kill id;
http://qq85609655.iteye.com/blog/2113960
React Native 搭建
- 博客分类:
- React Native
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew -v
brew install nvm
mkdir ~/.nvm
vim ~/.bash_profile
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
nvm
nvm -v
brew info nvm
nvm install node && nvm ...
关闭虚拟机防火墙:
关闭命令: service iptables stop
永久关闭防火墙:chkconfig iptables off
两个命令同时运行,运行完成后查看防火墙关闭状态
service iptables status
1 关闭防火墙-----service iptables stop
2 启动防火墙-----service iptables start
3 重启防火墙-----service iptables restart
4 查看防火墙状态--service iptables status
5 永久关闭防火墙--chkconfig iptabl ...
babel 使用记录
- 博客分类:
- Babel
//
$ echo '{ "presets": ["es2015","react"] }' > .babelrc
# ES2015转码规则
$ npm install --save-dev babel-preset-es2015
# react转码规则
$ npm install --save-dev babel-preset-react
# ES7不同阶段语法提案的转码规则(共有4个阶段),选装一个
$ npm install --save-dev babel-preset-stage-0
$ npm i ...
function disableForm(jqForm) {
function jeTypeMatch(jeTypec) {
var jet=jeTypec.match(/easyui-(combobox)/)||jeTypec.match(/[a-z-]+\s(textbox)/)||jeTypec.match(/easyui-(datebox)/);
return jet&&jet[1];
}
$('input[class^=easyui]',$(jqForm)).each(function () {
...
load("http://aui.github.io/artTemplate/dist/template.js");
var source = "{{if isAdmin}}<h1>{{title}}</h1><ul>{{each list as value i}}<li>索引 {{i + 1}} :{{value}}</li>{{/each}}</ul>{{/if}}";
var data = {title: '基本例子',isAdmin: true,list: ['文艺', ...
threadLocal实现参考TransactionSynchronizationManager
try {
System.out.println("222"+TransactionSynchronizationManager.hasResource(SessionFactoryUtils.getDataSource(getSessionFactory())));
ConnectionHolder ch=(ConnectionHolder)TransactionSynchronizationManager ...