【SpringBoot】| Spring Boot 概述和入门程序剖析
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.web.bind.annotation.*;
@RestController
@EnableAutoConfiguration
public class HelloWorldApplication {
@RequestMapping("/")
String home() {
return "Hello, Spring Boot!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(HelloWorldApplication.class, args);
}
}
这段代码是一个简单的Spring Boot应用程序,它创建了一个RESTful接口,当访问根路径"/"
时,它会返回“Hello, Spring Boot!”。@RestController
注解表示这是一个控制器,用于REST端点。@EnableAutoConfiguration
让Spring Boot根据类路径设置、其他bean以及各种属性设置自动配置你的应用程序。main
方法通过调用SpringApplication.run
方法启动Spring Boot应用程序。
评论已关闭