企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
~~~ package com.nobb.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; //将该类 交给Spring容器管理 @Controller @RequestMapping("/hello") public class HelloController { @RequestMapping("/hello") public String hello(){ System.out.println("hello"); return "/demo1"; } } ~~~ 访问地址 localhost:8080/hello/hello