You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am using lsp-mode (emacs) with a spring webapp. To use the auto redeploy feature of spring devtools it needs to see changes to the classpath. Our app places all classes in build/classes/java/main/... . The language server puts the classes in bin/main/... . Anyway to specify the path to the classes so that it build to the same path? By the looks of it the path is hardcoded here?
The skeleton build directory structure:
build
├── classes
│ └── java
│ └── main
│ └── no
│ └── myApp
│ ├── SomeClass.class
├── resources
│ └── main
└── tmp
By the looks of it jdt also has a different structure by also adding other files to the build directory?
bin
├── main
│ ├── application-dev.properties
│ ├── application-prod.properties
│ ├── application-test.properties
│ ├── application.properties
│ ├── build.properties
│ ├── no
│ │ └── myApp
│ │ ├── SomeClass.class
└── test
├── log4j.properties
└── no
└── myApp
├── SomeClass.class
Hi, I am using lsp-mode (emacs) with a spring webapp. To use the auto redeploy feature of spring devtools it needs to see changes to the classpath. Our app places all classes in build/classes/java/main/... . The language server puts the classes in bin/main/... . Anyway to specify the path to the classes so that it build to the same path? By the looks of it the path is hardcoded here?
The skeleton build directory structure:
By the looks of it jdt also has a different structure by also adding other files to the build directory?
Also see here for previous discussion: emacs-lsp/lsp-java#44
The text was updated successfully, but these errors were encountered: