springboot写Halloworld
时间: 2024-01-18 15:05:02 浏览: 103
springboot HelloWorld
以下是一个简单的Spring Boot应用程序,用于输出“Hello world!”:
1. 首先,创建一个Spring Boot项目并导入必要的依赖项:
```xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
```
2. 在src/main/java下创建一个名为```HelloWorldApplication.java```的类,并添加以下内容:
```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
@RestController
public class HelloWorldApplication {
public static void main(String[] args) {
SpringApplication.run(HelloWorldApplication.class, args);
}
@GetMapping("/")
public String helloWorld() {
return "Hello world!";
}
}
```
3. 运行该应用程序。现在,当在浏览器中输入“http://localhost:8080/”,将显示“Hello world!”。
这就是如何使用Spring Boot创建一个简单的"Hello World"应用程序。
阅读全文