GO 启动 简单服务

1.创建项目

  • 打开 GoLand -> 新建项目
  • 选择 "Go Modules (vgo)" 项目类型
  • 填写项目路径(如 examp
  • le.com/myapi)
  • 完成创建

2.创建 main.go 文件并添加以下代码

go 复制代码
package main

import (
	"encoding/json"
	"fmt"
	"log"
	"net/http"
	"time"
)

// 定义一个响应结构体
type Response struct {
	Status  string      `json:"status"`
	Message string      `json:"message"`
	Data    interface{} `json:"data"`
}

// 用户模型
type User struct {
	ID        int       `json:"id"`
	Name      string    `json:"name"`
	Email     string    `json:"email"`
	CreatedAt time.Time `json:"created_at"`
}

// 用户数据存储(模拟数据库)
var users = []User{
	{ID: 1, Name: "张三", Email: "zhangsan@example.com", CreatedAt: time.Now()},
	{ID: 2, Name: "李四", Email: "lisi@example.com", CreatedAt: time.Now().Add(-24 * time.Hour)},
}

func main() {
	// 设置路由
	http.HandleFunc("/", homeHandler)
	http.HandleFunc("/api/users", usersHandler)
	http.HandleFunc("/api/users/", userByIDHandler)

	// 启动服务器
	port := ":8080"
	fmt.Printf("🚀 服务器运行中,访问地址: http://localhost%s\n", port)
	fmt.Println("👉 可用端点:")
	fmt.Printf(" - GET http://localhost%s/api/users\n", port)
	fmt.Printf(" - GET http://localhost%s/api/users/:id\n", port)
	fmt.Println("=========================================")
	
	err := http.ListenAndServe(port, nil)
	if err != nil {
		log.Fatalf("❌ 启动服务器失败: %v", err)
	}
}

// 主页处理器
func homeHandler(w http.ResponseWriter, r *http.Request) {
	if r.URL.Path != "/" {
		http.NotFound(w, r)
		return
	}

	response := Response{
		Status:  "success",
		Message: "欢迎使用用户API服务",
		Data:    "请访问 /api/users 获取用户数据",
	}
	sendJSON(w, http.StatusOK, response)
}

// 获取所有用户
func usersHandler(w http.ResponseWriter, r *http.Request) {
	if r.Method != "GET" {
		http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
		return
	}

	response := Response{
		Status:  "success",
		Message: "用户数据获取成功",
		Data:    users,
	}
	sendJSON(w, http.StatusOK, response)
}

// 按ID获取单个用户
func userByIDHandler(w http.ResponseWriter, r *http.Request) {
	if r.Method != "GET" {
		http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
		return
	}

	// 解析URL中的ID
	id := r.URL.Path[len("/api/users/"):]
	var userID int
	_, err := fmt.Sscanf(id, "%d", &userID)
	if err != nil {
		http.Error(w, "Invalid user ID", http.StatusBadRequest)
		return
	}

	// 查找用户
	var found *User
	for _, u := range users {
		if u.ID == userID {
			found = &u
			break
		}
	}

	// 返回响应
	if found == nil {
		response := Response{
			Status:  "error",
			Message: "用户未找到",
			Data:    nil,
		}
		sendJSON(w, http.StatusNotFound, response)
		return
	}

	response := Response{
		Status:  "success",
		Message: "用户数据获取成功",
		Data:    found,
	}
	sendJSON(w, http.StatusOK, response)
}

// 发送JSON响应
func sendJSON(w http.ResponseWriter, statusCode int, data interface{}) {
	w.Header().Set("Content-Type", "application/json")
	w.WriteHeader(statusCode)
	
	if err := json.NewEncoder(w).Encode(data); err != nil {
		log.Printf("❌ JSON编码失败: %v", err)
		http.Error(w, "Internal Server Error", http.StatusInternalServerError)
	}
}

3.启动服务

终端中输入以下代码执行

bash 复制代码
go run main.go

或者

点击 main函数 旁边绿色启动按钮

4.模拟调用

创建 api_test.http 文件

bash 复制代码
### 获取所有用户
GET http://localhost:8080/api/users

### 按ID获取用户 - 有效ID
GET http://localhost:8080/api/users/1

### 按ID获取用户 - 无效ID
GET http://localhost:8080/api/users/999

### 访问主页
GET http://localhost:8080/

点击绿色按钮调用

调用成功

相关推荐
曹牧2 分钟前
Spring Boot:如何在Java Controller中处理POST请求?
java·开发语言
浅念-5 分钟前
C++入门(2)
开发语言·c++·经验分享·笔记·学习
WeiXiao_Hyy6 分钟前
成为 Top 1% 的工程师
java·开发语言·javascript·经验分享·后端
User_芊芊君子12 分钟前
CANN010:PyASC Python编程接口—简化AI算子开发的Python框架
开发语言·人工智能·python
苏渡苇12 分钟前
优雅应对异常,从“try-catch堆砌”到“设计驱动”
java·后端·设计模式·学习方法·责任链模式
Max_uuc22 分钟前
【C++ 硬核】打破嵌入式 STL 禁忌:利用 std::pmr 在“栈”上运行 std::vector
开发语言·jvm·c++
故事不长丨23 分钟前
C#线程同步:lock、Monitor、Mutex原理+用法+实战全解析
开发语言·算法·c#
long31623 分钟前
Aho-Corasick 模式搜索算法
java·数据结构·spring boot·后端·算法·排序算法
牵牛老人25 分钟前
【Qt 开发后台服务避坑指南:从库存管理系统开发出现的问题来看后台开发常见问题与解决方案】
开发语言·qt·系统架构
froginwe1134 分钟前
Python3与MySQL的连接:使用mysql-connector
开发语言