Untitled

 avatar
unknown
java
18 days ago
696 B
5
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