springboot输出hello world
时间: 2023-04-25 15:00:37 浏览: 94
好的,以下是使用Spring Boot输出"Hello World"的步骤:
1. 创建一个新的Spring Boot项目。
2. 打开项目的主类文件,通常是以"Application"结尾的类文件。
3. 在主类中添加一个@RequestMapping注解,用于处理HTTP请求。
4. 在@RequestMapping注解中指定要处理的请求路径。
5. 在方法体中输出"Hello World"。
6. 运行应用程序,并访问指定的请求路径。
下面是一个示例代码:
```
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.web.bind.annotation.*;
@RestController
@EnableAutoConfiguration
public class HelloWorldController {
@RequestMapping("/")
String home() {
return "Hello World!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(HelloWorldController.class, args);
}
}
```
完成以上步骤后,运行应用程序,并在浏览器中访问"http://localhost:8080/"即可看到输出的"Hello World"。
阅读全文