vscode-java
vscode-java copied to clipboard
Java Language Support for Visual Studio Code
### Description Each time I start VSCode, the Java Language Server re-initializes the workspace which takes a considerable amount of time. During this initialization period, I cannot: - Navigate to...
Type: Bug VS Code is showing error for this code snippet that standard javac has no problem with. It's a combination of having overload methods accepting two different interfaces and...
For projects newly created based on the Spring Boot Initializr extension, the Spring Boot Dashboard can normally display Beans and other information. However, when I open my older projects, the...
Hi I am writing a vscode extension and I want to get the symbols of a JAVA file. **Environment** Operating System: windows 10 Visual Studio Code version: 1.50.0 **Steps To...
plugin version: 1.39.0 jdk version: 21 Mvn version: Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537) Detail messages in output: [Error - 1:45:33 PM] Feb 19, 2025, 1:45:33 PM Invalid ZIP archive: .m2/repository/org/aspectj/aspectjweaver/1.8.13/aspectjweaver-1.8.13.jar Invalid...
I have a class implementing singleton pattern: ``` public class SomeSingleton { private static SomeSingleton uniqueInstance = null; private SomeSingleton() {} @Synchronized public static SomeSingleton getInstance() { if (uniqueInstance ==...
Eclipse provides a feature called Clean up (Right click a source folder: Source -> Clean Up). Clean up profile can be defined from Preferences -> Java -> Code Style ->...
Combined Clojure + Java development becomes very convenient as VScode supports both languages in a the same project. In this context it would be super useful if a Java project...
**Environment** Operating System: Windows 11 JDK version: 21 Visual Studio Code version: 1.95.2 Java extension version: 1.36.0 (Language Support for Java by Red Hat. When importing project, https://github.com/spring-projects/spring-boot , it...
In previous version (I dont know cause of this is vscode itself or extension) when I create a final variable and not init it, vscode will suggest add this variable...