Oracle JDeveloper Introduction - Getting to Know the IDE episode artwork

EPISODE · May 6, 2006 · 6 MIN

Oracle JDeveloper Introduction - Getting to Know the IDE

from Mandy's Podcast · host Mandy

 A guided tour of the IDE. This demo introduces you to JDeveloper’s IDE (Integrated Development Environment). This is the screen that displays when you open JDEveloper for the first time. Note that there are 3 windows. The large window, currently displaying the JDEveloper welcome information, is referred to as the Visual Editor, or Code Editor. This window is the Applications Navigator. And this is the structure window. You get started with JDeveloper by first creating a workspace in which to store your work. To create a workspace, select ‘Applications’ in the Application Navigator, and choose File|New. We’ll select the Workspace Item and click OK. Ensure that the Add a New Empty Project box is checked, and click OK to create your workspace. You can rename your project, or accept the default name. Click OK to create your project. The workspace and project names appear in the Navigator. A project is a sub-division of a workspace, and helps you organize your work, within the workspace. As you work with JDeveloper, you build up a collection of workspaces and projects within them. The Application Navigator allows you to view your workspaces and projects, and their contents in a hierarchical fashion. Note that the names of the workspace and project are italicized. This is because they have not yet been saved. Click File|Save to save your workspace and project. Now that you have a workspace and a project, you can start to build an application. Let’s create a JSP. Select File|New. The New Gallery displays the various types of applications you can build with JDeveloper. Select the Empty Project item and click OK. Now expand the Web Tier node and select Java Server Pages (JSP). In the items pane, choose JSP Page and click OK. Change the filename to hello.jsp and click ok. The empty hello.jsp page displays in the visual editor and it appears under the MyProject node in the navigator. The structure window is synchronized with the other windows, and so it displays the structure of hello.jsp. Two new windows have opened on the right of the page. The Component Palette and the Property Inspector. A JSP is an HTML page with embedded Java code. Let’s add some simple text to the page. Type in ‘Hello world’. The toolbar allows you to format the text on your page. Change it to Heading 2. Note that the property inspector displays the properties for the currently selected item, in this case, the H2 heading. You can view and update properties through the property inspector. The component palette provides the components needed for creating the many types of applications that jdeveloper offers. Let’s add a style sheet to the page. Select CSS which is a Cascading Style Sheet. Three style sheets are available. Select JDeveloper and drag it over to the editor. The JDeveloper style is applied to the page. Note that the property inspector is updated accordingly as is the structure window. Let’s add some HTML components to the page. In the component palette, select HTML then Form. Drag Form over to the editor. In the form we added, type Login: Now select Text Field from the component palette. Drag this to the right of the word Login in the editor. Change the name of the text field to username in the property inspector. Now click Submit button in the component palette and drag it to the right of our text field. A submit button is added. This window shows you the design view of your page. You can also view the source in the Source window or you can split the window to see design and source views at the same time by selecting Window|Split Document. The windows are synchronized so that a change made in one window is immediately visible in the other. If you change login to logon, you can see the change in both windows. Let’s add some code in the source window. On the logon row, put a space after form. Note how the code insight feature of JDeveloper helps you by offering suggestions in the appropriate context. Select action and type in hello.jsp. Go to the design window and save the page. Run the page to see how it will look when run in a browser. From the context menu select Run. …. Many applications require connections to other machines and devices. You use the connections navigator to create connections to other devices. These are the types of connections available. Let’s create a database connection. In the connections navigator, right click database and select New Database connection. Click Next. Here you can see the available connection types. Click Next. Enter the username and password for the database and click next. Now we’ll enter the IP address for our host and click next. Click Test Connection to make sure our connection is set up correctly. The database connection has been successfully established. Click next then finished. The new connection appears in the navigator. Expand the node to see the database objects. Expand the Tables node and we can see all the available tables. Notice that the columns of the selected table appear in the Structure window. This has been a guided tour of JDeveloper’s IDE. You have visited the Applications and Connections Navigators, the Visual Editor and Code Editor, the Component Palette, Property Inspector and Structure window.

Episode metadata supplied by the publisher feed · Published May 6, 2006

A guided tour of the IDE. This demo introduces you to JDeveloper’s IDE (Integrated Development Environment). This is the screen that displays when you open JDEveloper for the first time. Note that there are 3 windows. The large window, currently displaying the JDEveloper welcome information, is referred to as the Visual Editor, or Code Editor. This window is the Applications Navigator. And this is the structure window. You get started with JDeveloper by first creating a workspace in which to store your work. To create a workspace, select ‘Applications’ in the Application Navigator, and choose File|New. We’ll select the Workspace Item and click OK. Ensure that the Add a New Empty Project box is checked, and click OK to create your workspace. You can rename your project, or accept the default name. Click OK to create your project. The workspace and project names appear in the Navigator. A project is a sub-division of a workspace, and helps you organize your work, within the workspace. As you work with JDeveloper, you build up a collection of workspaces and projects within them. The Application Navigator allows you to view your workspaces and projects, and their contents in a hierarchical fashion. Note that the names of the workspace and project are italicized. This is because they have not yet been saved. Click File|Save to save your workspace and project. Now that you have a workspace and a project, you can start to build an application. Let’s create a JSP. Select File|New. The New Gallery displays the various types of applications you can build with JDeveloper. Select the Empty Project item and click OK. Now expand the Web Tier node and select Java Server Pages (JSP). In the items pane, choose JSP Page and click OK. Change the filename to hello.jsp and click ok. The empty hello.jsp page displays in the visual editor and it appears under the MyProject node in the navigator. The structure window is synchronized with the other windows, and so it displays the structure of hello.jsp. Two new windows have opened on the right of the page. The Component Palette and the Property Inspector. A JSP is an HTML page with embedded Java code. Let’s add some simple text to the page. Type in ‘Hello world’. The toolbar allows you to format the text on your page. Change it to Heading 2. Note that the property inspector displays the properties for the currently selected item, in this case, the H2 heading. You can view and update properties through the property inspector. The component palette provides the components needed for creating the many types of applications that jdeveloper offers. Let’s add a style sheet to the page. Select CSS which is a Cascading Style Sheet. Three style sheets are available. Select JDeveloper and drag it over to the editor. The JDeveloper style is applied to the page. Note that the property inspector is updated accordingly as is the structure window. Let’s add some HTML components to the page. In the component palette, select HTML then Form. Drag Form over to the editor. In the form we added, type Login: Now select Text Field from the component palette. Drag this to the right of the word Login in the editor. Change the name of the text field to username in the property inspector. Now click Submit button in the component palette and drag it to the right of our text field. A submit button is added. This window shows you the design view of your page. You can also view the source in the Source window or you can split the window to see design and source views at the same time by selecting Window|Split Document. The windows are synchronized so that a change made in one window is immediately visible in the other. If you change login to logon, you can see the change in both windows. Let’s add some code in the source window. On the logon row, put a space after form. Note how the code insight feature of JDeveloper helps you by offering (continued)

PodParley-generated summary based on available episode metadata and transcript content.

NOW PLAYING

Oracle JDeveloper Introduction - Getting to Know the IDE

0:00 6:10

No transcript for this episode yet

We transcribe on demand. Request one and we'll notify you when it's ready — usually under 10 minutes.

That Hoarder: Overcome Compulsive Hoarding That Hoarder Hoarding disorder is stigmatised and people who hoard feel vast amounts of shame. This podcast began life as an audio diary, an anonymous outlet for somebody with this weird condition. That Hoarder speaks about her experiences living with compulsive hoarding, she interviews therapists, academics, researchers, children of hoarders, professional organisers and influencers, and she shares insight and tips for others with the problem. Listened to by people who hoard as well as those who love them and those who work with them, Overcome Compulsive Hoarding with That Hoarder aims to shatter the stigma, share the truth and speak openly and honestly to improve lives. The Small Business Startup School – Business Notes | Financial Literacy | Retail Psychology – For Professionals & Entrepreneurs The Small Business Startup School Inc. Starting or buying a small business? While personal circumstances may vary, business patterns remain timeless. On The Small Business Startup School, we explore strategies, insights, and practical solutions to help entrepreneurs confidently navigate their journey.Hosted by Ola Williams—a retail entrepreneur, fintech founder, and financial coach with over two decades of experience—this podcast marries financial awareness and retail psychology with optimism to deliver actionable takeaways.Join us to learn, grow, and connect as we uncover the keys to business success.Let’s continue to learn together and be encouraged to keep on connecting! DIOSA. Carolina Sanper This podcast is a sacred space created by Carolina Sanper where you connect with your inner wisdom and embody your magnetic feminine power.It is the realization that the mystical realm is where you plant the seeds of your desired reality.It is a portal to your true essence: awareness, presence, and receiving with ease. Welcome home, DIOSA. 🖤 XXX Tech by SOVRYN Dr. Brian Sovryn The crossroads between technology, sensuality, and metaphysics - and the longest running anarchist podcast in the world! Brought to you by Dr. Brian Sovryn.

Frequently Asked Questions

How long is this episode of Mandy's Podcast?

This episode is 6 minutes long.

When was this Mandy's Podcast episode published?

This episode was published on May 6, 2006.

What is this episode about?

 A guided tour of the IDE. This demo introduces you to JDeveloper’s IDE (Integrated Development Environment). This is the screen that displays when you open JDEveloper for the first time. Note that there are 3 windows. The large window,...

Can I download this Mandy's Podcast episode?

Yes, you can download this episode by clicking the download button on the episode player, or subscribe to the podcast in your preferred podcast app for automatic downloads.
URL copied to clipboard!