Eclipse Organize Imports Shortcut (Ctrl+Shift+O) is not working

The Java Organize Import command is overwritten by another Ctrl+Shift+O command: in Window > Preferences: General > Keys the Java Organize Import command (where When is In Windows) is bound to Ctrl+Shift+O, but in the main and right-click menu Source > Organize Imports the command is displayed without the shortcut. There are two solutions for … Read more

How to filter call stack in Eclipse debug view for Java

Preparation: You can use step filters as described here. Then whenever you step-debug through your code, it will not jump into excluded packages or classes, e.g. from the JDK or some frameworks like Hibernate or Spring. But this is just a prerequisite. Solution: The stacktrace still contains frames from those those packages. In order to … Read more