Skip to main content

Installing Oracle JDeveloper 12.1.3 - ADF 12C (12.1.3)

Today I'm going to discuss about the installation of Oracle JDeveloper 12.1.3 to develop ADF 12C (12.1.3) compatible applications on a windows machine. This is a quick start guide, please refer Oracle documentation for detail installation instructions.
https://docs.oracle.com/middleware/1213/jdev/install/toc.htm

Prerequisites
Ensure that a certified JDK exists on your system. If not download and install JDK.
http://www.oracle.com/technetwork/java/javase/downloads/index.html

Step-1
Download JDeveloper Studio from OTN website.
http://www.oracle.com/technetwork/developer-tools/jdev/downloads/index.html

Step-2
Navigate to the directory where you have downloaded JDeveloper studio. I've downloaded 64 bit windows installer. Right click on the installer and run the application as administrator.

 This will start the installation of JDeveloper.
Alternatively you can start installer by navigating to the directory and executing the command from command prompt.
jdev_suite_121300_win64.exe

Step-3 Navigating the installation screens
Specify the location of Oracle home. Make sure it does not include any space.
Next screen verifies that your system meet the minimum requirements.

Click Install button the next screen.
I was trying to install JDeveloper in Windows 8 and I encountered this issue in step-5.

I have seen few comments in Oracle community. However here I'm giving the solution which worked for me.
Disable antivirus program and try again. If everything goes well you will get this screen.

You have successfully installed JDeveloper 12c on a Windows machine. Now you can start exploring JDeveloper. Feel free to comment if you face any issues. 

Comments

Popular posts from this blog

Oracle Apex - Upload Files to Amazon S3 Directly From Browser

This article is about uploading files from Oracle Apex to AWS S3. The files are directly uploaded to S3 without using any intermediate storage. The metadata is written to application DB to simplify further access.  Reference:  https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/s3-example-photo-album.html AWS Tasks Complete the prerequisite tasks described in  https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/s3-example-photo-album.html . This includes setting an S3 bucket, Amazon Cognito Identity Pool, Configuring IAM, and configuring CORS.  You will require bucket name, bucket region and pool id to access S3. Credentials are stored in DB and accessed using apex.server process while the user clicks the upload button. Apex Tasks Step#1  Add AWS SDK in your application user interface details. Refer the attachment. Step#2  Create a PL/SQL dynamic region using below given code htp.p('<div> <input type="file" id="fileUploa...

How to set Modal Dialog Title in Oracle APEX? JavaScript

 At times, the same modal dialog page is used to add as well as to edit a record. In such circumstances, a user-friendly title enhances the UX.  Updating non-modal dialog page title For a non-modal dialog, this is pretty straightforward. A substitution string can be used to dynamically set the title. For example, the page title in this scenario is set to Vendor display name. This is achieved by updating the title attribute. However, this approach will not work for modal dialogs. We can use javascript to update the modal dialog title. Updating Modal Dialog Title On page load, use a dynamic action to set the dialog title. .m-dialog-content CSS class is optional. This is used to avoid updating the title of the parent dialog in scenarios where a modal page opens another modal page. Output Edit Add