Configure ADF 11.1.2.1.0 on WebLogic 10.3.5

来源:互联网 发布:win2008 r2 数据库 编辑:程序博客网 时间:2024/06/08 00:40

最新版的ADF是一个补丁包,在安装到weblogic server上时需要打两个补丁并运行一个WLST的脚步,转发一个国外的帖子描述了具体步骤:

原文:点击打开链接

This is how you configure ADF 11.1.2.1.0 on a WebLogic 10.3.5 server:

First, you need to download and install WebLogic. Version 10.3.5 can be found here:
http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-main-097127.html

Next, install the ADF Runtime Version 11.1.1.5 running "setup.exe". Download is here:
http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html

Now patch your 11.1.1.5 ADF 11.1.1.5 Runtime to Version 11.1.2.1.0.
The patches (12979653 and 12917525) are only available via support.oracle.com:
https://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=12979653
https://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=12917525

The first patch contains the Runtime libs, the second one patches EM.
Set the ORACLE_HOME environment variable to the "oracle_common" directory of your WebLogic install, switch to the Patch dir and run opatch.bat to install the patches:

set ORACLE_HOME=C:\...\weblogic-home\oracle_common

cd ...\12979653
C:\...\weblogic-home\oracle_common\OPatch\opatch.bat

cd ...\12917525
C:\...\weblogic-home\oracle_common\OPatch\opatch.bat

Finally, update the EM JSF libraries by running the "upgradeADF" function in wlst (in disconnected mode):

C:\...\weblogic-home\oracle_common\common\bin\wlst.bat
upgradeADF('C:\...\weblogic-home\user_projects\domains\your-domain')
原创粉丝点击