【REST2SQL】03 GO读取JSON文件

【REST2SQL】01RDB关系型数据库REST初设计
【REST2SQL】02 GO连接Oracle数据库

REST2SQL需要一些配置信息,用JSON文件保存,比如config.json

在这里插入图片描述

1 创建config.json配置文件

{
	"hostPort":"localhost:5217",

	"connString":"oracle://blma:5217@127.0.0.1:1521/CQYH",

	"_oracle":"oracle://blma:5217@127.0.0.1:1521/CQYH",
	"_mysql":"mysql://",
	"_mssql":"mssql://",
	"_postgresql":"postgresql://",
	
	"REST":"GET,POST,PUT,DELETE", 
	"_REST":"GET,POST,PUT,DELETE", 

	"SQL":"SELECT",
	"_SQL":"SELECT,INSERT,UPDATE,DELETE"
	
}

其中_下划线开头的作为注释项。

2 创建一个Gojson的控制台程序

2.1 引入json和ioutil包

import (
	"encoding/json"
	"fmt"
	"io/ioutil"
)

2.2 创建配置项结构体

// 配置结构体
type Config struct {
	DBType     string //数据库类型 :oracle、mysql等
	ConnString string `json:"connString"`
	HostPort   string `json:"hostPort"`
	REST       string `json:"REST"`
	SQL        string `json:"SQL"`
}

反引号包裹的为json文件的键。
5个键分别为数据库类型,数据库连接字符串,http主机和端口,REST可用方法,SQL可用语句。

2.3 主控main()函数

func main() {
	fmt.Println("Go Read JSON")
	bytes, err := ioutil.ReadFile("config.json")
	if err != nil {
		fmt.Println("读取json文件失败", err)
		return
	}

	conf := &Config{}
	err = json.Unmarshal(bytes, conf)
	if err != nil {
		fmt.Println("json解析失败", err)
		return
	}

	fmt.Println(conf)
	fmt.Println("DBType:", conf.DBType)
	fmt.Println("connString:", conf.ConnString)
	fmt.Println("hostPort:", conf.HostPort)
	fmt.Println("REST:", conf.REST)
	fmt.Println("SQL:", conf.SQL)
}

3 go读取json全部代码

// gojson project main.go
// go 读取 Json 文件测试
package main

import (
	"encoding/json"
	"fmt"
	"io/ioutil"
)

// 配置结构体
type Config struct {
	DBType     string //数据库类型 :oracle、mysql等
	ConnString string `json:"connString"`
	HostPort   string `json:"hostPort"`
	REST       string `json:"REST"`
	SQL        string `json:"SQL"`
}

func main() {
	fmt.Println("Go Read JSON")
	bytes, err := ioutil.ReadFile("config.json")
	if err != nil {
		fmt.Println("读取json文件失败", err)
		return
	}

	conf := &Config{}
	err = json.Unmarshal(bytes, conf)
	if err != nil {
		fmt.Println("json解析失败", err)
		return
	}

	fmt.Println(conf)
	fmt.Println("DBType:", conf.DBType)
	fmt.Println("connString:", conf.ConnString)
	fmt.Println("hostPort:", conf.HostPort)
	fmt.Println("REST:", conf.REST)
	fmt.Println("SQL:", conf.SQL)
}

4 执行结果

Go Read JSON
&{ oracle://blma:5217@127.0.0.1:1521/CQYH localhost:5217 GET,POST,PUT,DELETE SELECT}
DBType:
connString: oracle://blma:5217@127.0.0.1:1521/CQYH
hostPort: localhost:5217
REST: GET,POST,PUT,DELETE
SQL: SELECT

  • 6
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值