Untitled
unknown
java
9 months ago
696 B
13
Indexable
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@RestController
@RequestMapping("/api")
public static class TestController {
@GetMapping("/test")
public String test() {
return "Hello, this is a test response!";
}
}
}
Editor is loading...
Leave a Comment