`
文章列表
参数赋值方式 1.属性驱动   public class LoginAction { private String username; private String password; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword ...
1.安装编译环境 yum -y install gcc automake autoconf libtool make gcc-c++ glibc   2.安装依赖包(按需安装) yum -y install libxslt-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-dev ...
AWS本地调试时提示license过期,可以通过删除当前用户目录下的.fe285ab55cf5e文件件解决。   把系统时间往后调整过后,启动AWS服务时提示以下警告信息时: 警告:检测到您的当前服务器时间向后调整,这样会导致BPM系统定时器发生故障,必须还原到最新日期 可以通过删除user_session表中当前时间之后日期创建的session记录信息解决。 select s.*,TO_CHAR(start_time / 1000 / 60 / 60 / 24 + TO_DATE('1970-01-01 08:00:00', 'YYYY-MM-DD HH:MI:SS'), 'YYY ...
SVN、Maven、GIT、Gerrit、HUDSON、JENKINS、Testlink   Node、Grunt、Bower、Yeoman、Express cnpm install-g grunt-cli cnpm install -g grunt cnpm install -g bower cnpm install -g yo npm install -g express npm install -g express-generator   模板引擎jade(pug)、ejs、swig、handlebars、mustache、hogan、doT   一应用无状态( ...

nginx配置

1.下载 wget http://nginx.org/download/nginx-1.4.1.tar.gz 2.安装默认安装到/usr/local/nginx tar -zxvf nginx-1.0.4.tar.gz  cd nginx-1.0.4  ./configure  --with-http_ssl_modulemake;make install   3.配置成服务 vim /etc/init.d/nginx #!/bin/sh## nginx - this script starts and stops the nginx daemin## chkconfig: - 85 ...
修改standalone\configuration\standalone.xml文件 在<extensions> </extensions> 节点之后插入如下配置:<system-properties>        <property name="org.apache.catalina.connector.URI_ENCODING" value="UTF-8"/>        <property name="org.apache.catalina.connector.USE_BOD ...
List of TCP and UDP port numbers From Wikipedia, the free encyclopedia     This is a list of Internet socket port numbers used by protocols of the Transport Layer of the Internet Protocol Suite for the establishment of host-to-host connectivity. Originally, these port numbers were used by t ...
package utils; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.SecureRandom; import java.security.spec.AlgorithmParameterSpec; import java.security.spec.KeySpec; import javax.crypto.Cipher; import javax.crypto.KeyGenerator; import javax.c ...
Spring3 整合Hibernate3.5 动态切换SessionFactory (切换数据库方言) 作者:孤风一剑   发布:2013-10-18 13:15   栏目:Java开发   点击:123次   抢沙发     一、缘由
public static void main(String[] args) { InputStream msgStream; BufferedReader buffer; String line; Connection conn = new Connection("远程主机地址"); Session session = null; try {    conn.connect();    conn.authenticateWithPassword("root", "      ");    session = co ...
excanvas.js ExplorerCanvas是一个让旧版IE浏览器支持HTML5 canvas标签的开源项目。使用非常简单,只需要在页面引入excanvas.js这个脚本。 主页:http://excanvas.sourceforge.net/ 下载:http://code.google.com/p/explorercanvas/downloads/list 示例:http://developer.mozilla.org/en/docs/Canvas_tutorial   zepto.js主页地址http://www.zeptojs.com/ 是一个专为mobile W ...
 public static void main(String[] args) {  int[] ints = { 1, 3, 5, 11, 13, 15, 17, 55 };  int m = 16;  int key = 0;  Map map = new HashMap();  for (int i = 0; i < ints.length; i++) {   key = m - ints[i];   map.put(ints[i], ints[i]);   if (map.containsKey(key)) {    System.out.println(key + " ...

英文简称

ut=单元测试 ft=团队合作
一般来说nginx配置文件中对优化比较有作用的为以下几项: worker_processes 8; nginx进程数,建议按照cpu数目来指定,一般为它的倍数。worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000;为每个进程分配cpu,上例 ...
摘要这个模块允许nginx同FastCGI协同工作,并且控制哪些参数将被安全传递。例: location / {  fastcgi_pass   localhost:9000;  fastcgi_index  index.php;   fastcgi_param  SCRIPT_FILENAME  /home/www/scripts/php$fastcgi_script_name;  fastcgi_param  QUERY_STRING     $query_string;  fastcgi_param  REQUEST_METHOD   $request_method;  fastcgi ...
Global site tag (gtag.js) - Google Analytics