20 very useful Eclipse IDE Shortcuts for Developers

Eclipse have been my favorite Java IDE since I started coding in Java. Shortcuts makes life very easy when you are working with any IDE. Eclipse also comes with lot of shortcuts that makes like of a developer easy.

Following are few shortcuts of my choice.

  1. Ctrl + Shift + O : Organize imports
  2. Ctrl + / : Line Comment
  3. Ctrl + Shift + T : Open Type
  4. Ctrl + O : Open declarations
  5. Ctrl + E : Open Editor
  6. Ctrl + Shift + F4 : Close all Opened Editors
  7. Alt + Shift + R : Rename
  8. Alt + Shift + L : Extract to Local Variable
  9. Alt + Shift + M : Extract to Method
  10. F3 : Open Declaration
  11. Alt + Shift + X : Run As…
  12. Alt + Shift + D : Debug As…
  13. Alt + Shift + W : show the class in the package view.
  14. Ctrl + T : Type hierarchy
  15. Ctrl+Q : Last edit
  16. Alt + Left or Alt + Right : Navigate Left and Right
  17. Ctrl + 1 : Quick Fix
  18. Ctrl + Space : Content Assist
  19. Alt + Shift + F : Format code
  20. Alt + Shift + S + R : Generate getter and setter methods

View Comments

Share
Published by
Viral Patel
Tags: eclipse eclipse feature eclipse shortcuts Java tips & tricks

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago