Skip to main content

Posts

Showing posts with the label spring boot

Eclipse Spring Boot Auto Completion (Activation)

   When installing Eclipse and spring tools for plugin, you can see there's no auto completion for annotations  like @Autowired.. Problem: By default, eclipse doen't auto complete for annotations like @Autowired, @PostMapping...   Resolution: Eclipse java has only auto complete (activate) for  '.' we should add '@' character for auto completion How To Solve Windows > Preferences > Java > Editor > Content Assist  Check Enable auto activation Add @ to triggers Auto activation triggers for Java: .@  Click Apply and Close Let's see If Auto Activation works or not. Done! If you have other languages like php, javascript, etc in eclipse, same process applies for triggering activation in editor. Reference: https://www.eclipse.org/pdt/help/html/using_javascript_content_assist.htm ...