使用 intellij 运行 go 应用程序时加载配置文件

我将 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知道它应该在执行我的项目之前复制它?


九州编程
浏览 81回答 1
1回答

繁星点点滴滴

看起来解决方案很简单。我所需要的只是将我的运行/调试配置的“输出目录”设置为我的项目目录。然后 intellij 在同一目录中执行该文件,它可以找到/config/config.json.
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go