weblogic上部署应用程序有三种方法:一:修改配置文件config.xml在文件中加入如下代码片段: FAB MS_BIS01 war D:\bea\user_projects\b_release\FAB ...
分类:
Web程序 时间:
2014-08-24 22:11:33
阅读次数:
460
【本教程翻译自Spring官方文档,并有适当增删】
(是针对Spring 4.0.6 Release版本的)
基于XML Schema的配置在Spring 2.0开始被引入,并在2.5和3.0版本得到增强和扩展。
转向基于XML Schema的动机是使得Spring XML配置更简单。传统的基于 的方法是很好,但它的通用特性带来了很大的配置开销。...
分类:
编程语言 时间:
2014-08-24 20:56:43
阅读次数:
192
LeetCode: Surrounded RegionsGiven a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's i...
分类:
其他好文 时间:
2014-08-24 20:41:13
阅读次数:
222
Google Chrome is a freeware web browser developed by Google Inc. Google Chrome team proudly announced the release of Google Chrome 35 on May 20, 2014....
分类:
其他好文 时间:
2014-08-24 16:41:42
阅读次数:
240
游起来吧!超妹!Time Limit:1 SecMemory Limit:128 MBSubmit:15Solved:7[Submit][Status][Web Board]Description夏天到了,无聊的超妹跑到了落雪湖里抓鱼吃。结果,游到湖的正中 央时被湖边保安看到了,保安要抓住超妹。我们...
分类:
其他好文 时间:
2014-08-24 15:27:32
阅读次数:
181
Semaphore是一个计数的信号量。从概念上来说,信号量维持一组许可(permits)。acquire方法在必须的时候都会堵塞直到有一个许可可用,然后就会拿走这个许可。release方法加入一个许可,会有可能释放一个堵塞中的获取者(acquirer)。然而,Semaphore没有使用真实的许可对象...
分类:
其他好文 时间:
2014-08-24 15:23:53
阅读次数:
232
下面将讲述一下我的几点经验,看看是不是其中之一:
1. 变量。
大家都知道,debug跟release在初始化变量时所做的操作是不同的,debug是将每个字节位都赋成0xcc(注1),而release的赋值近似于随机(我想是直接从内存中分配的,没有初始化过)。这样就明确了,如果你的程序中的某个变量没被初始化就被引用,就很有可能出现异常:用作控制变量将导致流程导向不一致;用作数组下标将会使程...
分类:
其他好文 时间:
2014-08-24 12:59:32
阅读次数:
139
1.epel简介: https://fedoraproject.org/wiki/EPEL/zh-cnrpm -Uvh http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpmrpm -Uvh http:/...
分类:
其他好文 时间:
2014-08-23 22:54:21
阅读次数:
209
A bishop is a piece used in thegame of chess which is played on a board of square grids. A bishop can only movediagonally from its current position and two bishops attack each other if oneis on the pa...
分类:
其他好文 时间:
2014-08-23 15:26:31
阅读次数:
286
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:
其他好文 时间:
2014-08-23 15:07:40
阅读次数:
190