Home > Back-end >  Vscode debugging Java program error
Vscode debugging Java program error

Time:11-12

 
The import reactor. Core. Publisher. Flux;

Public class App {

Public static void main (String [] args) {
Flux. Concat (
Flux. Just (1, 3),
Flux. Just (4, 2),
Flux. Just (6, 5)
). The subscribe (e - & gt; System. The out. Println (e));
}

}


Wrote a simple program debugging in vscode, pom. XML introduces related library, maven's local repository path set is "D: \ repository", when debugging applications submitted to the following error:

The debugger like or use the default maven repository location, have a great spirit to guide how to solve this problem?
  • Related