- 浏览: 40401 次
- 性别:
- 来自: 武汉
最新评论
文章列表
webservice
- 博客分类:
- webservice
spring xfire weblogic
http://www.cnblogs.com/ksuifeng/archive/2010/05/18/1738749.html
http://www.csdn.net/article/2012-01-17/310905
linux下启动oracle
- 博客分类:
- sql
linux下启动oracle
http://www.doc88.com/p-749828140920.html
http://macrochen.iteye.com/blog/246177
linux下安装activemq
启动activemq
http://blog.chinaunix.net/uid-20639775-id-3067938.html
/software/apache-activemq-5.5.1/bin/activemq start
oracle导入导出
- 博客分类:
- sql
imp userid=cspay/cspay fromuser=cspay touser=cspay file=D:\cspay-2012-04-23.dmp ignore=y
exp username/password@test file=xxx.dmp
oracle 11g空表不能导出
- 博客分类:
- sql
http://blog.csdn.net/yangsen251024/article/details/7049911
1)memchaed入门
http://my249645546.iteye.com/blog/1420061
2)memcached与spring整合
http://blog.sina.com.cn/s/blog_9d0ce63d01012t9g.html
memcached之java客户端:spymemcached与spring整合
http://blog.csdn.net/fhd001/article/details/6764542
linux下安装memcached
启动memcached
http://hi.baidu.com/hivemind/item/1f5ca1ba890ad ...
http://hi.baidu.com/164878858/blog/item/f7eeb4e99e0698ccd439c923.html
maven上传到私服
http://woshixy.blog.51cto.com/5637578/1045424
http://hegang793901.blog.163.com/blog/static/651431682012030105657434/
命令
mvn deploy:deploy-file -DgroupId=com.pay -DartifactId=upomp_bypay_merchant -Dversion=2.0-SNAPSHOT ...
<%
//remove cache
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires", 0);
%>
或则
<meta http-equiv="pragma" content="no-cache">
<meta http- ...
在linux环境下搭建android开发环境,总结了一下。
一、访问共享资源目录:
1.点击桌面computer图标,选择file->open location
2.在地址栏输入smb://172.16.11.200/ds_wh
3.在弹出框中username栏输入:archermind/工号
密码栏输入自己密码
二、<1&g ...
这段代码演示了如何在Java代码里,通过调用su命令来临时修改某些文件的访问权限
Runtime ex = Runtime.getRuntime();
String cmdBecomeSu = "su";
String script = "busybox chmod a+rw /dev/pmem";
try{
java.lang.Process runsum = ex.exec(cmdBecomeSu);
int exitVal = 0;
final OutputStreamWriter out = new OutputStreamWriter(run ...
例1: String x = new String("xyz"); (1)
String y = "abc"; (2)
x = x + y; (3)
问:上述三个语句总共创建了多少String对象?
答:总共4个String对象,语句(1 ...
ThreadLocal的实现原理,及使用实例,解决spring,hibernate非web项目下的懒加载 no session or session was closed(1)! 收藏
JDK 1.2的版本中就提供java.lang.ThreadLocal,ThreadLocal为解决多线程程序的局部变量独立问题...
查看API我们可以查看ThreadLocal的定 ...
最近想将java基础的一些东西都整理整理,写下来,这是对知识的总结,也是一种乐趣。已经拟好了提纲,大概分为这几个主题: java线程安全,java垃圾收集,java并发包详细介绍,java profile和jvm性能调优 。慢慢写吧。本人jameswxx ...