blob: 82b3f58af2a7498253e6f6622684aa916e0e7b19 [file] [log] [blame]
package com.pt.testResponse;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@CrossOrigin(origins = "*")
public class TestController {
@GetMapping("/test")
public String testResponse() {
return "Hello, world!";
}
}