Applies to:Oracle Database - Enterprise Edition - Version 10.2.0.2 to 12.1.0.1 [Release 10.2 to 12.1] Linux x86 HP-UX PA-RISC (64-bit) IBM AIX on POWE...
分类:
数据库 时间:
2014-08-05 13:58:29
阅读次数:
455
1、创建对应configuration的App.config文件,比如:App.Debug.config、App.Release.config。2、编辑项目文件,将App.*.config文件的Build Action修改为Content,参考如下: App.config ...
分类:
移动开发 时间:
2014-08-05 13:44:59
阅读次数:
184
来源:http://www.greensoftcode.net/ 发布日期:2014-03-28 点击次数:471 发布者IP:119.119.236.221.判断是debug编译还是release编译。如果_DEBUG定义了表示是debug编译,否则是release编译。2.判断是32位编译还是....
分类:
其他好文 时间:
2014-08-05 13:41:59
阅读次数:
179
Problem Description
A luxury yacht with 100 passengers on board is sailing on the sea in the twilight. The yacht is ablaze with lights and there comes out laughers and singing from the hall where a...
分类:
其他好文 时间:
2014-08-05 11:09:49
阅读次数:
240
Solid-state storage management for a system, the management including establishing, externally to a solid-state storage board, a correspondence betwee...
分类:
其他好文 时间:
2014-08-05 00:24:28
阅读次数:
462
11g通过一个参数设置密码大小写敏感,下面来做个试验:
C:\Documents and Settings\guogang>sqlplus gg_test/gg_test@10.10.15.25_gg
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 8月 4 17:54:19 2014
Copyright (c) 1982, 2005, Or...
分类:
数据库 时间:
2014-08-04 21:46:18
阅读次数:
362
首先要说明的是VS解决方案配置下的Debug模式和Release模式有什么区别。Debug模式通常称为调试模式,它包含调试信息,未对代码进行优化,方便程序员调试程序;Release模式通常叫做发布模式,不包含调试信息,但是它对代码进行了优化,使程序代码和运行速度都是最优的。因此我们在发布系统之前,一定要保证系统没有Bug,也就是在Debug模式下能够成功生成解决方案。解决方案配置转换方式详见下图:...
分类:
其他好文 时间:
2014-08-04 17:53:27
阅读次数:
284
一、基础框架 SpringMVC-4.0.3.RELEASE,使用的maven来管理jar依赖 二、依赖的jar, ??<dependency>??
???????<groupId>org.hibernate</groupId>??
???????<artifactId>hibernate-validator...
分类:
编程语言 时间:
2014-08-04 14:48:11
阅读次数:
1758
php用CAS实现SSO单点登陆及登出功能
一..CAS服务器搭建
CAS服务器端下载地址:http://downloads.jasig.org/cas/
解压cas-server-4.0.0-release.zip将modules目录下的cas-server-webapp-4.0.0.war改名称为cas.war复制到tomcat的webapps下,启动tomcat,访问...
分类:
Web程序 时间:
2014-08-04 14:32:27
阅读次数:
418
1. AQS简介
AQS是Java并发类库的基础,其提供了一个基于FIFO队列,可以用于构建锁或者其他相关同步装置的基础框架。该同步器(以下简称同步器)利用了一个int来表示状态,期望它能够成为实现大部分同步需求的基础。使用的方法是继承,子类通过继承同步器并需要实现它的方法来管理其状态,管理的方式就是通过类似acquire和release的方式来操纵状态。然而多线程环境中对状态的操纵...
分类:
编程语言 时间:
2014-08-04 14:22:37
阅读次数:
295