`
文章列表

网络设置

route add default gw 172.18.3.50  默认路由的添加route add -host  192.168.168.110 dev eth0:1  主机路由的添加route add -host 192.168.168.120 gw 192.168.168.119   主机路由的添加route add -net 192.168.24.0 netmask 255.255.254.0 dev eth0  添加一个到子网的路由route add -net 192.168.4.0 netmask 255.255.255.0 gw 172.18.3.50  添加一个到子网的路由    ...

查找最大文件

du -s * | sort -nr | head

oracle启动

  conn   sys/pwd@link_name   as   sysdba    shutdown   immediate;    startup   出现表空间错误解决办法 startup mount alter database datafile filename offline drop; alter database open;
  tar -xzf  libevent-1.3.tar.gz cd  libevent-1.3 ./configure --prefix=/usr         --enable-threads make make install cd .. tar -xzf memcached-1.2.2.tar.gz cd memcached-1.2.2 ./configure --prefix=/usr make make install memcached -d -m 128  -p 11211 -u root 

增加表空间

问:在oracle数据库中,我们如何增加表空间的大小?   答: 在开发oracle数据库中,我们有两种方法增加表空间的大小:   1.增加额外的数据文件到表空间中   例如:alter tablespace users add datafile '/u01/oradata/orcl/users02.dbf' size 25m;   2.修改表空间当前的数据文件   例如:alter database datafile   '/u01/oradata/orcl/users01.dbf' resize 50m; 3.临时表空间 alter tablespace temp add TEM ...
继承AbstractRoutingDataSource @Override protected Object determineCurrentLookupKey() { Long id = UseridContextHolder.getUserid(); return selectDBService.selectDb(id); } setTargetDataSources(dataSourceMap);
public class AnnotationAutoloadBeanDefinitionParser implements BeanDefinitionParser ClassAnnotationProcessor processor = new ClassAnnotationProcessor( filter); for (SpringAnnotationHandler handler : handlers) { handler.setBeanDefinitionRegistry(parserContext.getRegistry()); ...
try { this.cacheManager = CacheManager.create(); cache = cacheManager.getCache(CACHENAME); if (cache == null) { cache = new Cache(CACHENAME, 10, true, true, 30 * 60, 0); // cache.getCacheConfiguration().setMemoryStoreEvictionPolicy("LRU"); this.cacheMan ...
注册监听器 AbstractApplicationContext refresh() private void registerListeners() throws BeansException { // Do not initialize FactoryBeans here: We need to leave all regular beans // uninitialized to let post-processors apply to them! Collection listeners = getBeansOfType(ApplicationListener.cl ...
最近很失败,还是收拾心情,卧薪尝胆吧. 定制一份读书计划,鞭策自己. 企业应用架构模式 Head.First.设计模式 without ejb 分析模式可复用的对象模型 effictive java spring 高级编程 学习spring源代码 重构改善已有代码 领域驱动设计.软件核心复杂性应对之道 重构与模式 学习hibernate源代码
Spring声明式事务让我们从复杂的事务处理中得到解脱。使得我们再也无需要去处理获得连接、关闭连接、事务提交和回滚等这些操作。再也无需要我们在与事务相关的方法中处理大量的try…catch…finally代码。 我们在使用Spring声明式事务时,有一个非常重要的概念就是事务属性。事务属性通常由事务的传播行为,事务的隔离级别,事务的超时值和事务只读标志组成。我们在进行事务划分时,需要进行事务定义,也就是配置事务的属性。 Spring在TransactionDefinition接口中定义这些属性,以供PlatfromTransactionManager使用, PlatfromTransacti ...

vi命令

vi作为linux下的通用文本编辑工具,是经常使用到的。vi功能强大,命令也相当多,常用的摘记下: 1.设置显示行号 :set nu 取消显示行号 :set nonu 2.光标移动到n行 nG 光标移动到最后一行 G 3.光标移动到本行第n个字符 n空格 光标移动到本行最后一个字符 $ 4.向光标之后搜索字符串 /word 向光标之前搜索字符串 ?word 5.从第n1行到第n2行搜索word1字符串,并替换为word2 :n1,n2s/word1/word2/g 逐个替换 :n1,n2s/word1/word2/gc 从第一行到最后一行进行替换应该是 :1,$s/wor ...
http://www.learndiary.com/archives/diaries/3150.htm 转载请注明本文原始出处:GoF设计模式之入门介绍: http://java.learndiary.com/diaries/3150.jsp。本文在原始出处随时更新,欢迎批评指正和讨论。 --JAVA学习日记 littlebat 2007.04.02 16:33 正文: **** ...
1.在tomcat/bin/catalina.sh中这句改为: if [ -r "$CATALINA_HOME"/conf/logging.properties ]; then   JAVA_OPTS="$JAVA_OPTS "-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager" "-Dcom.sun.management.jmxremote.port=16688" "-Dcom.sun.management.jmxremote.aut ...
jinfo:可以输出并修改运行时的java 进程的opts。 jps:与unix上的ps类似,用来显示本地的java进程,可以查看本地运行着几个java程序,并显示他们的进程号。 jstat:一个极强的监视VM内存工具。可以用来监视VM内存内的各种堆和非堆的大 ...
Global site tag (gtag.js) - Google Analytics