blob: a0dbae959fb7f8e9b14df821ce8a7cb58d50d8fc [file] [log] [blame]
223011028fd30b82025-06-05 18:02:21 +08001package com.pt.testResponse;
2
3import org.springframework.web.bind.annotation.CrossOrigin;
4import org.springframework.web.bind.annotation.GetMapping;
5import org.springframework.web.bind.annotation.RestController;
6
7@RestController
8@CrossOrigin(origins = "*")
9public class TestController {
10
22301102b04a60d2025-06-05 18:02:21 +080011 @GetMapping("/api/test")
223011028fd30b82025-06-05 18:02:21 +080012 public String testResponse() {
13 return "Hello, world!";
14 }
15}