我将 MacOS Mojave 与 IntelliJ Ultimate 2018.2 结合使用。
我写了一个 go 应用程序,它从我的项目目录加载一个配置文件。我创建了一个InitConfig()函数来将 JSON 文件加载到结构中。Config.go这是我文件的代码
package main
import (
"github.com/tkanos/gonfig"
"log"
)
type Configuration struct {
WebServerPort int
DbName string
DbUser string
DbPassword string
DbPort int
CertFile string
KeyFile string
EnableHttps bool
}
var AppConfiguration Configuration
func InitConfig() {
AppConfiguration = Configuration{}
err := gonfig.GetConf(ExPath + "/config/config.json", &AppConfiguration)
if err != nil {
log.Fatalf("could not parse configuration file: %v",err)
}
}
我使用一个名为的变量ExPath,其中包含正在运行的二进制文件的当前目录,我使用以下代码 (Path.go) 创建了它:
package main
import (
"log"
"os"
"path/filepath"
)
var ExPath string
func InitPath() {
ex, err := os.Executable()
if err != nil {
log.Fatalf("could not get executable path: %v",err)
}
ExPath = filepath.Dir(ex)
}
当我尝试运行或调试应用程序时,intellij 正在创建一个编译和运行应用程序的目录,我如何告诉它也复制 json 文件?
当我尝试运行/调试我的应用程序时,我得到:
could not parse configuration file: open /private/var/folders/60/qzt2pgs173s4j_r6lby_mw1c0000gn/T/config/config.json: no such file or directory
我检查了一下,那个目录确实不包含我的配置目录。所以..有没有办法让intellij知道它应该在执行我的项目之前复制它?
繁星点点滴滴
相关分类