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条)

报告相同问题?

悬赏问题

  • ¥30 关于#opencv#的问题:使用大疆无人机拍摄水稻田间图像,拼接成tif图片,用什么方法可以识别并框选出水稻作物行
  • ¥15 Python卡尔曼滤波融合
  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1