加载中
windows连接其他windows机器

win+r---->输入:mstsc---->输入另台windows机器IP------>输入用户名,密码----->连接成功

2015/07/20 14:38
109
window下查看tomcat x32 || x64

可以试试这个查看 cd {tomcat_home}/lib or server/lib java -cp catalina.jar org.apache.catalina.util.ServerInfo...

maven引用本地jar

在maven项目的pox.xml里进行如下配置: <dependencies> <dependency> <groupId>test</groupId> <!-- 此行和下行都可以自己随便定义 --> <artifactId>beck</artifactId> <version>1.0</versio...

2015/05/15 11:22
188
Can't find bundle for base name cache

解决ofbiz在myeclipse中调试运行时报错:Can't find bundle for base name cache 摘自:http://blog.csdn.net/zjsen/article/details/5844797...

Eclipse指定jdk启动

机器上装了好几个版本的jdk,要用指定的jdk启动eclipse,只需修改eclipse.ini文件即可。

切换jdk,tomcat脚本

启动脚本之前执行:ps -aux|grep tomcat 查看下tomcat是否开启,如果开启了执行: kill -9 该tomcat进程数。 启动脚本./opt/test/startTomcatAll/start.sh 5 6 (开启jdk5 tomcat6) 后接的第一个...

获取监控指标

http://www.jolokia.org/reference/html/agents.html#agent-war-init-params可获取所有由JDK运行的应用程序 http://127.0.0.1:7777/jolokia/status...

nginx启动及关闭

开启nginx D:\nginx-1.6.2>start nginx 关闭nginx D:\nginx-1.6.2>nginx -s quit

多线程创建线程池管理线程

import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; /** * @author hxm */ public class TestThread { public static void main(String args[]){ //创建...

GKB字符集转UTF-8

str_country = new String(country.getBytes(), "UTF-8"); str_isp = new String(isp.getBytes(), "UTF-8"); str_region = new String(region.getBytes(), "UTF-8"); str_county = new Strin...

ip截取及处理

String info = rs.getString("ip_end"); String[] names = info.split("\."); String ip = ""; for (String s : names) { int d = 0; if (!s.equals("000")) { d = Integer.parseInt(s); } i...

没有更多内容

加载失败,请刷新页面

返回顶部
顶部