Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 556 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.3K Development
- 17 Developer Projects
- 139 Programming Languages
- 293K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 158 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 468 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
Jdeveloper Autosuggest/ autocomplete feature

I was writing Java code in JDeveloper ide. I found that it don't have to autocomplete and auto-suggest feature, as we have in Netbeans and other ide's. If there is this functionality, please guide me with the steps.
Thank You.
Best Answer
-
Timo Hahn Senior Principal Technical Consultant - Oracle ACE Director Member, Moderator Posts: 38,585 Red Diamond
This feature is not available. All you can do is too use keyboard shortcut where you your a couple of keys and then expand then to some code.
The ide is too old and was never updated to support this kind of feature.
Timo
Answers
-
Timo Hahn Senior Principal Technical Consultant - Oracle ACE Director Member, Moderator Posts: 38,585 Red Diamond
User, tell us your exact JDev version, please!
What exactly do you want to do?
Timo
-
version- oracle jdeveloper 12c
I want something like shown in the picture. Here I am getting suggestion, so I want this feature on Jdeveloper.
-
Timo Hahn Senior Principal Technical Consultant - Oracle ACE Director Member, Moderator Posts: 38,585 Red Diamond
This feature is not available. All you can do is too use keyboard shortcut where you your a couple of keys and then expand then to some code.
The ide is too old and was never updated to support this kind of feature.
Timo
-
If the question is regarding auto-suggest/auto-complete Java code, Studio edition does support it. Please refer
3.8.2.1 Features Available From the Context Menu
The context menu of the generic source editor provides a set of features. These features include Completion insight which provides a list of possible completions; Parameter insight which provides the types and names of the parameters of the method being typed; and Complete Statement which provides auto-completion of code statements.
Completion Insight
Completion insight provides you with a list of possible completions, such as method names, and parameter types if they are applicable, at the insertion point, which you may use to auto-complete Java code you are editing. This list is generated based on the code context found at the insertion point. The contexts supported by completion insight are:
Within package and import statements
Within extends, implements, and throws clauses
Within continue and break statements
Within general code expressions
Default keyboard shortcut: Ctrl+Space
Parameter Insight
Parameter insight provides you with the types and names of the parameters of the method call you are typing. If the method is overloaded, multiple sets of parameter types and names are listed.
Default keyboard shortcut: Ctrl+Shift+Space
Note:
If errors for the file appear in the Structure window, Code (Completion or Parameter) Insight may not work. If the class(es) you are using are not in your project (that is, not on your classpath), Code Insight will not appear. Please note that you may need to compile your src files in order for Code Insight to have access to them.
Complete Statement
Use to auto-complete code statements where such a completion is obvious to JDeveloper; for example, semi-colon insertions at the end of a statement.
Default keyboard shortcut: Ctrl+Shift+Enter
Expand Template
Insert a code template from a list of JDeveloper's predefined code templates. The code templates offered are context sensitive. For example, templates to declare class variables are only offered when the cursor is in the appropriate place in the class file.
Default keyboard shortcut: Ctrl+Enter
Code Assist
Code Assist examines your code in the editor and provides assistance to fix common problems. A Code Assist icon appears in the editor margin when JDeveloper has a suggestion for a code change. To invoke Code Assist manually, press Ctrl+Alt+Enter. To select an action listed in Code Assist, press Alt+ the underlined key.
Default keyboard shortcut: Ctrl+Alt+Enter
https://docs.oracle.com/middleware/12213/jdev/user-guide/working.htm#OJDUG246