Tuesday, July 17, 2018

Run Quick start installer to create a stand alone osb domain from existing integrated weblogic domain

To run quick start configuration wizard for new domain:
Open cmd and write the following:
set MW_HOME=C:\Oracle\Middleware
cd C:\Oracle\Middleware\osb\common\bin
create_sample_domain.bat

OR

cd oracle_home/Middleware/osb/common/bin
set QS_TEMPLATES= oracle_home/Middleware/osb/common/templates/oracle.osb_template.jar
call "oracle_home/Middleware/osb/common/bin\qs_config.cmd"

java - fill distinct objects in ArrayList

If you have a list that contains some objects that it is considered as duplication when two or three fields of these objects are equal. How ...