新建工程
选择spring-boot版本
右键创建类TestController:服务器托管网
代码如下:
package com.example.demo;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/liupeng")
public class TestController {
@GetMapping("/hello")
public String TestHelloworld()
{
return "hello world";
}
}
运行启动后台,输入网址测试:
http://127.0.0.1:8080/liupeng/hello
服务器托管,北京服务器托管服务器托管网,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: 在线问诊 Python、FastAPI、Neo4j — 构建问题分类器
目录 构建字典数据 构建 Trie 字典树 按实体组装字典 问题分析 将问题进行分析,和系统已有的分类进行关联 构建字典数据 将构建的知识图片字典化, 用于后面对问题的解析,下图为症状的字典,其它字典同理 构建 Trie 字典树 将建字典数据,组装集合 cur…