springboot输出helloworld
时间: 2023-10-01 22:08:13 浏览: 111
springboot HelloWorld
在Spring Boot中,可以通过创建一个简单的控制器来输出"Hello, World!"。
首先,你需要确保已经正确配置了Spring Boot项目。然后,创建一个新的Java类,命名为"HelloController"(或者你喜欢的任何名称),并添加以下代码:
```java
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
}
```
这段代码定义了一个简单的控制器,使用`@RestController`注解标记为一个RESTful风格的控制器。`@GetMapping("/hello")`注解表示处理GET请求,并将结果返回给客户端。
现在,你可以运行Spring Boot应用程序,并访问`http://localhost:8080/hello`,将在浏览器中看到"Hello, World!"的输出。
阅读全文