后端开发框架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应用程序,它提供了一个HTTP接口,当访问根路径/
时,会返回"Hello, Spring Boot!"的问候语。这个应用程序可以直接运行在支持Java 8或更高版本的环境中。使用@RestController
注解表示这是一个RESTful控制器,它直接返回HTTP响应。@RequestMapping
注解指定了路由信息。main
方法中的SpringApplication.run
是Spring Boot应用程序的入口点。
评论已关闭