blob: 82b3f58af2a7498253e6f6622684aa916e0e7b19 [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
11 @GetMapping("/test")
12 public String testResponse() {
13 return "Hello, world!";
14 }
15}