`
Jerry__xie
  • 浏览: 15185 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论
文章列表
#!/bin/bash # # chkconfig: - 20 80 # description: Starts and stops the App. # author:vakinge ENV=dev RUNNING_USER=vakinge ADATE=`date +%Y%m%d%H%M%S` APP_NAME=passport-server APP_HOME=`pwd` dirname $0|grep "^/" >/dev/null if [ $? -eq 0 ];then APP_HOME=`dirname $0` el ...
<span><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/maven-v4_0_0.xsd"> <!--父项目的坐标。如果项目中没有规定某个元素的值,那么 ...
flexigrid参数说明: height: 200, //flexigrid插件的高度,单位为px width: 'auto', //宽度值,auto表示根据每列的宽度自动计算,在IE6下建议设置具体值否则会有问题 striped: true, //是否显示斑纹效果,默认是奇偶交互的形式 novstripe: false,//没用过这个属性 minwidth: 30, //列的最小宽度 minheight: 80, //列的最小高度 resizable: false, //resizable table是否可伸缩 ...
mvc:interceptors 这个标签用于注册一个自定义拦截器或者是WebRequestInterceptors. 可以通过定义URL来进行路径请求拦截,可以做到较为细粒度的拦截控制。 例如在配置文件加入 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc&q ...
[Log4j] 配置Log4j [Log4j] 配置Log4jLog4J的配置文件(Configuration File)就是用来设置记录器的级别、存放器和布局的, 它可接key=value格式的设置或xml格式的设置信息。通过配置,可以创建出Log4J的运行环境。 1. 配置文件 Log4J配置文件的基本格式如下: #配置根Logger log4j.rootLogger  =   [ level ]   ,  appenderName1 ,  appenderName2 ,  … #配置日志信息输出目的地Appender log4j.appender.appenderName  ...

Ehcache 特性

EhCache 是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认的CacheProvider。 Ehcache缓存的特点: 1. 快速. 2. 简单. 3. 多种缓存策略 4. 缓存数据有两级:内存和磁盘,因此无需担心容量问题 5. 缓存数据会在虚拟 ...
《 Think Different 》中的旁白:            这个世界上有疯狂的人            不适应工作的人,叛逆者,惹事生非的人 与环境格格不入的人,看问题与别人不一样的人 他们不喜欢规则,也不喜欢现状 你可以赞同他们的话,也可以反对他们的话 你可以赞美他们,也可以诋毁他们 你惟一不能做的,就是忽视他们 因为他们可以改变世界,推动人类的发展 可能有人认为他们是疯子,但我们认为他们是天才 因为这些人够疯狂,他们认为可以改变世界,而且他们     确实在这么做
package com.xuanker.admin.function; /* * LumaQQ - Java QQ Client * * Copyright (C) 2004 luma < stubma@163.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Fou ...
360doc http://www.360doc.com/relevant/137541549_more.shtml Solr开发文档 http://www.cnblogs.com/hoojo/archive/2011/10/21/2220431.html Mongodb API http://static.springsource.org/spring-data/data-mongodb/docs/current/api/
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Highcharts Example</title> <script type="text/javascript" src="jquery.min.js"></script> <script type="text/javas ...

MongoDB 查询(2)

Mongodb 查询 (2)2011-12-12 10:52Mongodb 查询 查询嵌入的document 查询嵌入的整个document和普通的查询没有差别,比如我们有这样一个document {   "name" : {     "first" : "Joe",     "last" : "Schmoe"   },   "age" : 45 } 那么我们就可以这样查询名字叫Joe Schmoe的人 > db.peopl ...

MongoDB 查询(1)

Mongodb 查询(1)2011-12-12 10:531.find方法介绍 在不传入参数的情况下,find方法缺省使用{}做参数,它匹配所有的document。 我们可以传入一个查询document给find方法来限制输出,如:查找年龄为27的用户 > db.users.find({"age" : 27}) 一个查询document里可以包括多个条件,如:查询年龄为27并且名字叫joe的用户 > db.users.find({"username" : "joe", "age" : 27}) ...
HQL运算符 QBC运算符 含义 = Restrictions.eq() 等于equal <> Restrictions.ne() 不等于not equal > Restrictions.gt() 大于greater than >= Restrictions.ge() 大于等于greater than or equal < Restrictions.lt() 小于less than <= Restrictions.le() 小于等于less than or equal is null Restri ...
Global site tag (gtag.js) - Google Analytics