
java portal是什么,让我们一起来了解一下?
portal英文字面是“入口”,国内有叫“门户”技术的,当然“集成”技术更能表达它的意思。Portal是一个基于web的应用程序,主要提供个性化、单点登录、不同来源的内容整合以及存放信息系统的表示层。
portal有哪些实际应用?
1、Portal作为网关服务于因特网的一种WEB站点。Portal是链路、内容和为用户可能找到的感兴趣的信息(如新闻、天气、娱乐、商业站点、聊天室等)的指南服务的集合。Yahoo、Excite、MSN.com和Netscape NetCenter都是Portal。
2、在幻想游戏,科幻小说和一些“新时期”哲学中,Portal是进入到过去,现在或未来的另一个世界的一个通道,或进入到一个扩展的认识当中。

3、在3D的图形开发中,Portal是增加写实主义的效果,而且加速显示的技术。
具体代码示例如下:
@Override
protected Object handleGetObject(String key) {
if (key == null) {
throw new NullPointerException();
}
String value = null;
if (parent != null) {
try {
value = parent.getString(key);
}
catch (MissingResourceException mre) {
//hqw 2012.09.09 add begin
String titlekey = key.concat(StringPool.PERIOD).concat(_portletInfo.getTitle());
if (Validator.isNotNull(titlekey)) {
titlekey = titlekey.toLowerCase();
}
try {
value = parent.getString(titlekey);
} catch (MissingResourceException mre2) {
}
//end
}
}
if ((value == null) || (value == ResourceBundleUtil.NULL_VALUE)) {
value = _getJavaxPortletString(key);
}
if ((value == null) && ResourceBundleThreadLocal.isReplace()) {
value = ResourceBundleUtil.NULL_VALUE;
}
return value;
}以上就是小编今天的分享了,希望可以帮助到大家。
