springboot代码示例
时间: 2023-10-17 18:36:12 浏览: 74
springboot 代码示例
以下是一个简单的Spring Boot代码示例:
```java
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
@RestController
class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello, Spring Boot!";
}
}
```
这个示例展示了一个最基本的Spring Boot应用程序。`@SpringBootApplication`注解标记了该类作为Spring Boot应用程序的入口点。`main`方法在其中启动了应用程序。
`HelloController`类是一个简单的REST控制器,它有一个`hello`方法,当访问`/hello`路径时,会返回"Hello, Spring Boot!"。
阅读全文