💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
~~~ 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