Book Image

Oracle JET for Developers

By : Raja Malleswara Rao Malleswara Rao Pattamsetti
Book Image

Oracle JET for Developers

By: Raja Malleswara Rao Malleswara Rao Pattamsetti

Overview of this book

This book will give you a complete practical understanding of the Oracle JavaScript Extension Toolkit (JET) and how you can use it to develop efficient client-side applications with ease. It will tell you how to get your own customized Oracle JET set up. You'll start with individual libraries, such as jQuery, Cordova, and Require.js. You'll also get to work with the JavaScript libraries created by Oracle, especially for cloud developers. You'll use these tools to create a working backend application with these libraries. Using the latest Oracle Alta UI, you'll develop a state-of-the-art backend for your cloud applications. You'll learn how to develop and integrate the different cloud services required for your application and use other third-party libraries to get more features from your cloud applications. Toward the end of the book, you'll learn how to manage and secure your cloud applications, and test them to ensure seamless deployment.
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Debugging Oracle JET applications


Debugging the web interface application is a bit tricky, especially when dealing with JavaScript-based content. With a number of components being reused and developed by multiple developers across the project, managing the dependencies across multiple production releases and reviewing any defects that are raised in web interface components, is a tricky exercise.

Using browser extensions

One option is to review the output by inserting console output and checking the browser console. (For example, select More Tools | Developer Tools from Chrome's main menu. Right-click a page element and select Inspect.) Developer tools have features such as device mode, elements panel, console, sources, network, performance, memory, application, and security panels to help us debug the application further.  

The following is a screenshot of the Oracle JET page with browser debugging enabled and populating the components loading through the network:

Using IDE extensions

We can...