Download as pdf or txt
Download as pdf or txt
You are on page 1of 7

OAF-Debugging Techniques

1
Outline

 Debugging Techniques

2
Debugging Techniques

 Debug a page is time consuming and also it is important


skillset required
 Allows developer to learn internals of the architecture
 One of the best ways in enhancing knowledge in this
framework

3
Using SOP

 System.out.println()
 When running the OA Framework pages from jDeveloper itself, you
can write debug messages using System.out.println.
 These debug messages will be displayed in the console of
jDeveloper.

4
Using BreakPoints –Inbuilt
Debugger
 One of the best debugging technique
 To get started just one breakpoint is required, as more
and more breakpoints can be added in runtime itself.
 * You can set generic breakpoints, for example, you can
set breakpoint on exceptions, which will take you to the
exact
 line of code from where the exception was being raised

5
Jdeveloper Inbuild Debugging Feature :
Java VM Runtime Property

 Tools → Project Properties


 append text -Djbo.debugoutput=console to runner property

6
FND Diagnostics

You might also like