DemoApplication.java 400 字节
Newer Older
G
GitLab 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.example.demo;

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.web.bind.annotation.*;

@SpringBootApplication
@RestController
public class DemoApplication {

	@GetMapping("/")
	String home() {
		return "Spring is here!";
	}

	public static void main(String[] args) {
		SpringApplication.run(DemoApplication.class, args);
	}
}