golang框架和库的使用

1、ORM框架,gorm

  获取连接非常简单,不知道可不可以更进一步,不用显示的获取连接~_~

    dsn :="root:xxx@tcp(localhost:3306)/crm?parseTime=true"
    con,err:=gorm.Open(mysql.Open(dsn))
    if(err!=nil){
        log.Fatal(err)
        return
    }
    db = con

  查询语句,写起来有点像mybatisplus,也很丝滑

    var cus []Customer
    // 泛型支持不好,没有具体到具体类型
    db.Table("customer").Find(&cus,Customer{ALIAS: "qiang1212121125"});
    fmt.Println(len(cus))
    fmt.Println(cus)

 

上一篇:浅淡Webservice、WSDL三种服务访问的方式(附案例)


下一篇:springMVC系列之与spring的整合——07