doudu161481 2017-11-05 03:50 采纳率: 100%
浏览 30
已采纳

如何为包含DB conn之类的应用程序包设置全局配置?

I've structured my application in two packages so far - main and app

In my main() I start my server:

func main() {
    router := app.CreateRouter(app.Routes())
    log.Fatal(http.ListenAndServe(":8080", router))
}

In app, I have a Config struct which has a method connectToDB:

type Config struct {
    DB *sql.DB
}

func (c *Config) connectToDB() {
    connectionString := fmt.Sprintf("user=%s password=%s dbname=%s sslmode=disable", os.Getenv("DB_USERNAME"), os.Getenv("DB_PASSWORD"), os.Getenv("DB_NAME"))
    var err error
    c.DB, err = sql.Open("postgres", connectionString)
    if err != nil {
        log.Fatal(err)
    }
}

func init() {
    c := Config{}
    c.connectToDB()
}

However, I have various handlers and if I want to make use of Config.DB, how can I do that?

For example, in app.UserIndex, how can I get to Config.DB?

func UserIndex(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
    fmt.Fprint(w, "test!
")
}

Now, one thing I can do is set a global variable, such as

var c Config

Then, I can access c.DB anywhere in package app. However, this feels bad..

  • 写回答

2条回答 默认 最新

  • doushupu2521 2017-11-05 04:28
    关注

    You can make an App variable to keep there config and some other useful settings for it eg Http time-out

    var (
          App struct {
               DB         *sql.DB
               Timeout time.Duration
               ...
          }
    )
    

    Then make methods on this structure. This way config will be incapsulated in application instance.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵