比如在浏览器输入http://localhost:8078/hello/helloword访问的是后端的
@RestController
@RequestMapping("/hello")
public class HelloWord {
@RequestMapping("/helloword")
public String helloWord(){
return "hello word";
}
}
浏览器将会返回
论文笔记:Time-LLM: Time Series Forecasting by Reprogramming Large Language Models
阅读 15
2024-04-28
比如在浏览器输入http://localhost:8078/hello/helloword访问的是后端的
@RestController
@RequestMapping("/hello")
public class HelloWord {
@RequestMapping("/helloword")
public String helloWord(){
return "hello word";
}
}
浏览器将会返回
相关推荐
精彩评论(0)