`
文章列表
bootstrap导航菜单在ie8下不能正常显示问题解决: 在你的html静态页面头部加上: <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!--[if lt IE 9]>      <script src="https://oss.maxcdn.com/libs/html5shiv/3.6.2/html5shiv.js"></script>      <script src="js/respond.s ...
请求方法 public static String postFileSend(String reqUrl, String[][] httpHeader, String filePath, String encode) throws IOException { if (StringUtils.isEmpty(reqUrl)) { log.info("请求地址为空"); return "请求地址不能为空"; } HttpPost post = new HttpPost(reqUrl); if (httpHea ...
maven命令之下载依赖jar包到指定位置: mvn dependency:copy-dependencies -DoutputDirectory=src\main\webapp\WEB-INF\lib   官网示例:http://maven.apache.org/plugins/maven-dependency-plugin/
Spring TestContext 测试框架体系结构 TestContext 核心类、支持类以及注解类 TestContext 测试框架的核心由 org.springframework.test.context 包中三个类组成,分别是 TestContext 和 TestContextManager 类以及 TestExecutionListener 接口。   每次测试都会创建TestContextManager。TestContextManager管理了一个TestContext, 它负责持有当前测试的上下文。
  基于spring testcontext+junit+dbunit的单元测试 /** * */ package com.um.vstore.portal.service.impl; import static org.junit.Assert.assertTrue; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import ...

rsync备份同步

服务器端: 每个需要备份的项目所在的服务器作为rsync的server端,配置如下:   Rsync的配置文件配置允许备份目录:/etc/rsync.conf如下:   uid = nobody gid = nobody use chroot = no max connections = 3 transfer logging = true log format = %h %o %f %l %b pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock log file = /var/log/rsync ...
模块:nginx_upstream_check_module-master   upstream caihong_server{                        server 192.168.1.20:8085;                        server 192.168.1.21:8085;                        check interval=3000 rise=2 fall=5 timeout=1000 type=http;                        check_http_send "GET / HT ...
resin的eclipse插件,支持resin 3.1
<web-app id="/" document-directory="E:\test\TestWeb" archive-path="E:\test\TestWeb.war" redeploy-mode="automatic"/>
在sbin下执行: nginx  -t -c nginx.conf
转自:http://blog.chinaunix.net/uid-14007440-id-3150269.html   本文通过cookie_session来判别,解决了Nginx session不同步问题。 AD: 测试环境: server1   服务器上安装了  nginx + resin server2  服务器上只安装了 resin             server1  IP 地址: 192.168.6.121 server2  IP 地址: 192.168.6.162   安装步骤: 1. 在server1 上安装配置 nginx + ...
maven中运行maven-release-plugin插件release:prepare对空包不能识别:今天遇到个让我诧异的问题,maven-release-plugin插件release:prepare对我新建的包不能识别这个包跟svn上对比是否有变动,它不会告诉你这个包没有提交。这个地方得小心,当你新建了一个包的时候,一定得先提交下svn,然后再在里面创建你的文件,否则你新建的这些东西都不能通过maven-release-plugin插件release:prepare来识别出来。    
因为我们开发是用的eclipse,里面有工程文件.project这种文件,运行release:prepare的时候报异常: Cannot prepare the release because you have local modifications 提示你有文件没有提交,正常的文件可以提交,但是这种文件我们得让插件自己过滤掉。 配置如下: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</a ...
JAVA不定参数探秘 JAVA中可以使用不定参数, 例如 public void test(String ...args){...} 这里test方法可以传入参数的情况是: 1.不使用参数,如test() 2.使用一个或多个参数,如test("1"); test("1","2"); 3.使用数组 test(new String[]{"1","2"}); 在test方法内部,我们可以像使用数组的访问方式一样来访问参数args.如:args[i] 这样就有一个好处,在参数输入不定的情况下,使用这个方法 ...
rsync在服务器之间通信备份(包括window和linux之间): linux和linux之间: 服务器:192.168.1.1 客户端:192.168.1.2 服务端: uid = nobody gid = nobody use chroot = no         max connections = 3 transfer logging = true log format = %h %o %f %l %b pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock log file = /var/log/rsyn ...
Global site tag (gtag.js) - Google Analytics