LittleBlackTong

Results 5 comments of LittleBlackTong

this is my dap-template (dap-register-debug-template "jetcache-application" (list :type "java" :request "attach" :args "" :cwd nil :stopOnEntry :json-false :host "localhost" :request "launch" :modulePaths (vector) :classPaths nil :projectName "jetcache-application" :mainClass "com.tongzhou.jetcache.JetcacheApplication")) I...

I tried using Java Run Configuration (compile/attach) The 1.8 version is used to start this way, but the :env and :vmArgs I set did not take effect. How to solve...

(dap-register-debug-template "xxx-template" (list :type "java" :request "compile_attach" :vmArgs "-Denv=qa --add-opens java.base/java.lang=ALL-UNNAMED" :args "" :modulePaths (vector) :request "launch" :mainClass "com.weimob.rocket.xxx.xxx" :port 8080 :request "launch" :host "127.0.0.1" :env '(("WOAUTH_URL" . "xxx") ("APP_ID"...

thanks thanks 🙏 How to set :env or :environment-variables when request is compile_attach? i set :env '(("wlog.sdk.config.appLogSimpleTextFormat" . "true")) It takes effect when the request is launch, but it will...