When using eclipse to develop jsp pages, the smart prompt effect is not ideal. By modifying the eclipse configuration, it can fully intelligently prompt HTML/JS/CSS code. The specific steps are as follows
1. Open eclipse→ Windows→Preferences→Java→Editor→Content Assist
Modify the value of Auto Activation triggers for java to: ".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW" (the convention "" needs to be removed) Click the apply button;
2. Continue to open JavaScript→Editor→Content Assist
Modify the value of Auto Activation triggers for javaScript to: ".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW" Click the apply button;
3. Continue to open web→html Files→Editor→Content Assist
Modify the value of Prompt when these characters are inserted:: "<=.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW" Click the apply button;
[Principle:]This modification is to let the IDE When encountering such characters, perform a prompt search. If you feel that the prompt is not fast enough, you can increase the "delay" time.