用springboot创建helloworld
时间: 2023-12-04 14:05:35 浏览: 78
springboot-helloworld.rar
以下是使用Spring Boot创建Hello World的步骤:
1.首先,确保已经安装了Java和Maven。
2.打开IDE(例如Eclipse或IntelliJ IDEA),创建一个新的Maven项目。
3.在pom.xml文件中添加以下依赖项:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
4.创建一个名为HelloWorldApplication的Java类,并在其中添加以下代码:
```java
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@SpringBootApplication
public class HelloWorldApplication {
public static void main(String[] args) {
SpringApplication.run(HelloWorldApplication.class, args);
}
@RequestMapping("/")
public String hello() {
return "Hello World!";
}
}
```
5.运行应用程序,然后在浏览器中访问http://localhost:8080/,应该会看到“Hello World!”的消息。
阅读全文