单点登录SSO(Single Sign On)说得简单点就是在一个多系统共存的环境下,用户在一处登录后,就不用在其它系统中登录,也就是用户的一次登录能得到其它全部系统的信任。单点登录在大型站点里使用得很频繁,比如像阿里巴巴这种站点,在站点的背后是成百上千的子系统,用户一次操作或交易可能涉及到几十个子...
分类:
其他好文 时间:
2015-02-08 15:21:36
阅读次数:
198
DECLARE@number1ASnumeric(10,2),@number2ASnumeric(10,2)SELECT@number1=10.00,@number2=10.2SELECTCASEWHENCAST(@number1ASINT)=@number1THEN'整数'ELSE'小数'END,...
分类:
数据库 时间:
2015-02-08 12:49:56
阅读次数:
457
题目链接:http://poj.org/problem?id=1064
题意:有n条绳子,他们的长度是Li,如果从他们中切割出K条长度相同的绳子,这相同的绳子每条有多长,输出至小数点后两位
“ then the output file must contain the single number "0.00" (without quotes).”不是四舍五入到两位,一般四舍五入题目会说“bou...
分类:
其他好文 时间:
2015-02-08 09:06:17
阅读次数:
260
题目要求:Wildcard MatchingImplement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of chara...
分类:
其他好文 时间:
2015-02-07 21:35:36
阅读次数:
124
题目描述:Regular Expression MatchingImplement regular expression matching with support for'.'and'*''.' Matches any single character.'*' Matches zero or mo...
分类:
其他好文 时间:
2015-02-07 14:27:18
阅读次数:
122
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2015-02-07 09:08:17
阅读次数:
165
APPLIES TO:Oracle Database - Enterprise Edition - Version 11.2.0.1 and laterExalogic Elastic Cloud X4-2 Half RackInformation in this document applies ...
分类:
数据库 时间:
2015-02-06 18:40:47
阅读次数:
155
带品质描述词的单点信息 Single-point Information with Quality descriptor
SIQ : = CP8{SPI, RES, BL, SB, NT, IV}
SPI : = BS1[1] : = 分/开 : = 合/关
RES保留 : = BS3[2..4]
BL : = BS1[5] : = 未被闭锁 : = 被闭锁
SB : = ...
分类:
其他好文 时间:
2015-02-06 16:44:37
阅读次数:
358
Cas的全称是Centeral Authentication Service,是对单点登录SSO(Single Sign On)的一种实现。其由Cas Server和Cas Client两部分组成,Cas Server是核心,而Cas Client通常就对应于我们的应用。一个Cas Server可以对应于多个Cas Client。它允许我们在一个Client进行登录以后无需再让用户输入用户名和密码...
分类:
其他好文 时间:
2015-02-06 11:23:14
阅读次数:
118
创建Java Project项目,项目名称:ch01-jumpstartCalculator.javapublic class Calculator { public double add(double number1, double number2) { return numb...
分类:
其他好文 时间:
2015-02-05 23:04:23
阅读次数:
158