Settings and activity
2 results found
-
81 votes
We have released a preview version of our Java support for you all to try out! :-)
https://community.idx.dev/t/check-out-our-new-backend-focused-templates/746
Feel free to reply in the forums itself with your feedback.
Christian Blankenback supported this idea ·An error occurred while saving the comment -
1 voteChristian Blankenback shared this idea ·
Java Spring boot works with Maven. At least I got it to run you just need to install the extension pack Springboot tools(vmware.vscode-spring-boot) and Extension Pack for Java(vscjava.vscode-java-pack). Also update dev.nix file with: packages = [
pkgs.openjdk17
];
# Sets environment variables in the workspace
env = {
JAVA_HOME = "${pkgs.openjdk17}/lib/openjdk";
};
and rebuild the project.
Also make sure pom.xml has <java.version>17</java.version>
I do think it would be awesome to have a template though!